From dc68235ebaa3a5eeec398e1b8d16eb07b6446573 Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Wed, 30 Jul 2014 17:18:25 +0200 Subject: [PATCH] Adding release notes. --- NEWS.rst | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 NEWS.rst 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",