Merge branch 'master' into 2.0-devel

Conflicts:
	kombu/__init__.py
	kombu/serialization.py
	kombu/utils/encoding.py
This commit is contained in:
Ask Solem 2011-10-26 17:23:56 +01:00
commit b15857b8ab
4 changed files with 31 additions and 2 deletions

View File

@ -2,6 +2,34 @@
Change history
================
.. _version-1.4.2:
1.4.2
=====
:release-date: 2011-10-26 05:00 P.M BST
:by: Ask Solem
* Eventio: Polling should ignore `errno.EINTR`
* SQS: str.encode did only start accepting kwargs after Py2.7.
* simple_task_queue example didn't run correctly (Issue #72).
Fix contributed by Stefan Eletzhofer.
* Empty messages would not raise an exception not able to be handled
by `on_decode_error` (Issue #72)
Fix contributed by Christophe Chauvet.
* CouchDB: Properly authenticate if user/password set (Issue #70)
Fix contributed by Rafael Duran Castaneda
* BrokerConnection.Consumer had the wrong signature.
Fix contributed by Pavel Skvazh
.. _version-1.4.1:
1.4.1

View File

@ -2,7 +2,7 @@
kombu - AMQP Messaging Framework for Python
#############################################
:Version: 1.4.1
:Version: 1.4.2
Synopsis
========

0
contrib/release/bump_version.py Normal file → Executable file
View File

View File

@ -35,7 +35,8 @@ if is_py3k:
else:
def str_to_bytes(s): # noqa
return s
if isinstance(s, unicode):
return s.encode()
def bytes_to_str(s): # noqa
return s