Skip to content

Commit

Permalink
Release version 0.2.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
earl committed Dec 27, 2009
1 parent 56b0e00 commit d970f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beanstalkc.py
Expand Up @@ -17,7 +17,7 @@
limitations under the License.
'''

__version__ = '0.1.1'
__version__ = '0.2.0'

import logging
import socket
Expand Down

0 comments on commit d970f04

Please sign in to comment.