From d970f04a2356edf7c86e349597d0a1ec156b08e3 Mon Sep 17 00:00:00 2001 From: Andreas Bolka Date: Sun, 27 Dec 2009 15:20:49 +0100 Subject: [PATCH] Release version 0.2.0 beanstalkc 0.2.0 is compatible with beanstalkd 1.4.3 and will work with any later 1.x release of beanstalkd. beanstalkc API changes compared to version 0.1.1: 6e282a0 Change YAML-related names for clarity INCOMPATIBLE CHANGE: the optional parameter `decode_yaml` to `Connection`'s constructor is now named `parse_yaml`. a49928f Wrap all socket exceptions in SocketError INCOMPATIBLE CHANGE: `socket.error` exceptions are no longer exposed to the user, catch `beanstalkc.SocketError` instead. a494e1d Gracefully handle missing PyYAML CHANGE: `Connection`'s `parse_yaml` parameter now also accepts functions. --- beanstalkc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beanstalkc.py b/beanstalkc.py index 238b732..e45c861 100644 --- a/beanstalkc.py +++ b/beanstalkc.py @@ -17,7 +17,7 @@ limitations under the License. ''' -__version__ = '0.1.1' +__version__ = '0.2.0' import logging import socket