From f7fab013349d4cc50eef279a193781885de1215e Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Mon, 4 Aug 2014 14:57:53 +0200 Subject: [PATCH] Release notes. --- NEWS.rst | 12 ++++++++++++ setup.py | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 6373338..2eb8d0a 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,15 @@ +python-bond 0.3 +--------------- + +* Local exceptions are now forwarded remotely for exported functions. +* Except for Python, exceptions are no longer serialized, but are instead + propagated using their originating error message. See the ``trans_except`` + keyword argument in constructors allows to tune this behavior. +* The spawned interpreter now uses a copy of the current environment. +* PHP now triggers an exception when attempting to redefine a function. +* JavaScript is now supported through Node.js. + + python-bond 0.2 --------------- diff --git a/setup.py b/setup.py index df1adf2..4414d7d 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.2', +setup(name='python-bond', version='0.3', description='transparent remote/recursive evaluation between Python and other languages', author="Yuri D'Elia", @@ -15,6 +15,7 @@ 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', 'Operating System :: POSIX', 'Operating System :: Unix', + 'Programming Language :: JavaScript', 'Programming Language :: PHP', 'Programming Language :: Perl', 'Programming Language :: Python',