From a7cd076bfcafa5704abef34790bff7cce4e21fb1 Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Mon, 11 Aug 2014 22:20:50 +0200 Subject: [PATCH] Release notes. --- NEWS.rst | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 16a35cd..1a44e3e 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,15 @@ +python-bond 0.5 +--------------- + +* Python 3 support has been added, with the ability to mix major Python + versions between the host and the bond. +* All languages/interpreters can now be executed with a remote shell without + using additional arguments. +* On the remote side, ``__PY_BOND_SerializationException`` has been renamed to + ``_PY_BOND_SerializationException`` as it can be trapped by the user code. +* The scope of a PHP code block in an exported, recursive call has been fixed. + + python-bond 0.4 --------------- diff --git a/setup.py b/setup.py index 9f09dde..89c532d 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.4', +setup(name='python-bond', version='0.5', description='transparent remote/recursive evaluation between Python and other languages', author="Yuri D'Elia",