Barry Pederson <bp@barryp.org> [Thu, 29 Sep 2011 13:17:55 -0500] rev 201
Added tag 1.0.2 for changeset 124bd71678e2
Barry Pederson <bp@barryp.org> [Thu, 29 Sep 2011 13:17:49 -0500] rev 200
Bump the version number to 1.0.2 for the packing fix for Windows
Barry Pederson <bp@barryp.org> [Thu, 29 Sep 2011 13:17:22 -0500] rev 199
Fix Issue 42 having to do with installing on Windows
Barry Pederson <bp@barryp.org> [Wed, 28 Sep 2011 20:13:32 -0500] rev 198
Oops, forgot to document what was changed in 1.0.1
Barry Pederson <bp@barryp.org> [Wed, 28 Sep 2011 19:59:34 -0500] rev 197
Added tag 1.0.1 for changeset cf8638fcc5c1
Barry Pederson <bp@barryp.org> [Wed, 28 Sep 2011 17:12:31 -0500] rev 196
Fix Issue 41 relating to a minor problem some older versions of FreeBSD have with socket.getaddrinfo()
Barry Pederson <bp@barryp.org> [Wed, 28 Sep 2011 17:09:45 -0500] rev 195
Add MANIFEST.in, so that demos, tests, docs are included in the
source distribution. Fixes Issue 36 , thanks to MichaelF...@gmail.com
for the report and the patch
Barry Pederson <bp@barryp.org> [Wed, 28 Sep 2011 17:07:47 -0500] rev 194
Add more Trove classifiers to help packagers, bump the version number for the next release
Barry Pederson <bp@barryp.org> [Thu, 28 Jul 2011 00:29:35 -0500] rev 193
Added tag 1.0.0 for changeset 59dc52a3c871
Barry Pederson <bp@barryp.org> [Thu, 28 Jul 2011 00:26:37 -0500] rev 192
Wrap this thing up, call it 1.0.0 in celebration of OSCON 2011
Barry Pederson <bp@barryp.org> [Sun, 17 Jul 2011 23:45:50 -0500] rev 191
Fix Issue 35 , comparing a Message to something else (such as None), raises an AttributeError
instead of returning false. Thanks to Tarrant....@gmail.com for reporting this.
Barry Pederson <bp@barryp.org> [Wed, 22 Jun 2011 21:40:34 -0500] rev 190
Process basic_return methods from the server whenever they're received, rather than queueing them up and basically ignoring them unless the user called wait(). (Issue 29, thanks to pkwar...@gmail.com for bringing up the issue and providing a patch)
Barry Pederson <bp@barryp.org> [Wed, 22 Jun 2011 20:25:36 -0500] rev 189
Enable TCP keepalive (Issue 32, suggested by g...@theoldmonk.net)
Barry Pederson <bp@barryp.org> [Wed, 22 Jun 2011 20:03:47 -0500] rev 188
Enable TCP_NODELAY, gives a nice little 6x speedup of the unittests at least.
Barry Pederson <bp@barryp.org> [Wed, 22 Jun 2011 19:57:35 -0500] rev 187
Shutdown a socket before closing it, to ensure pending transmissions aren't discarded. (Issue 30, thanks to chr...@pianocktail.org for pointing this out).
Barry Pederson <bp@barryp.org> [Wed, 22 Jun 2011 10:20:23 -0500] rev 186
Add support for IPv6, supporting literal addresses or domain names with AAAA records.
Barry Pederson <bp@barryp.org> [Tue, 05 Apr 2011 21:26:46 -0500] rev 185
Add support for queue_unbind, which is supported by RabbitMQ as an extension to the 0-8 protocol.
Thanks to Hasan Alayli <halayli@...> for a patch.
Barry Pederson <bp@barryp.org> [Mon, 04 Apr 2011 21:22:50 -0500] rev 184
Alter one of the unittests skipped over for Python 3.x so that it can run and check the behavior we want even in 3.x
Barry Pederson <bp@barryp.org> [Mon, 04 Apr 2011 20:51:48 -0500] rev 183
Add patch from Viktor Naoumov <vnaumov@r...> adding the ability on Python >= 2.6 to specify a dictionary of SSL options to pass to ssl.wrap_socket(), sock as specifying a client cert, a CA cert, and requiring the ca cert match.
Barry Pederson <bp@barryp.org> [Tue, 29 Mar 2011 12:13:30 -0500] rev 182
Since encoding of unicode message bodies has now moved from happening at Message creation time to transmission time, move the setting of a default content_encoding message property to happen at the same time. So they're both late behaviors now, instead of one being early and one being late.