Skip to content

Commit

Permalink
2.11.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
eandersson committed Sep 27, 2024
1 parent c8c210c commit 3846499
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

Version 2.11.0
--------------
- Replace select.select with select.poll on Linux by default.
- Replace list with collections.deque - Thanks Bernhard Thiel.
- Removed unnecessary lock when building messages.

Version 2.10.8
--------------
- Fixed bug with multi-threaded basic.consume not always being threadsafe [#132] - Thanks mic1on.
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ Additional documentation is available on `amqpstorm.io <https://www.amqpstorm.io
Changelog
=========

Version 2.11.0
--------------
- Replace select.select with select.poll on Linux by default.
- Replace list with collections.deque - Thanks Bernhard Thiel.
- Removed unnecessary lock when building messages.

Version 2.10.8
--------------
- Fixed bug with multi-threaded basic.consume not always being threadsafe [#132] - Thanks mic1on.
Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""AMQPStorm."""
__version__ = '2.10.8' # noqa
__version__ = '2.11.0rc1' # noqa
__author__ = 'eandersson' # noqa

import logging
Expand Down

0 comments on commit 3846499

Please sign in to comment.