diff --git a/NEWS.rst b/NEWS.rst new file mode 100644 index 0000000..a32bc33 --- /dev/null +++ b/NEWS.rst @@ -0,0 +1,9 @@ +python-bond 0.2 +--------------- + +* Serialization errors are now intercepted by default and generate a local + exception of type ``bond.SerializationError``. +* PHP can now "call" any callable statement. +* eval_block() no longer returns the value of the last statement. This avoids + confusion with Perl code blocks returning unserializable references. +* Standard error is now also redirected. diff --git a/setup.py b/setup.py index 39230e0..df1adf2 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python from setuptools import setup, find_packages -setup(name='python-bond', version='0.1', +setup(name='python-bond', version='0.2', description='transparent remote/recursive evaluation between Python and other languages', author="Yuri D'Elia",