diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8dd44..81c29f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## [Unreleased] +## [1.1.6] - 2024-03-26 + +- Fixed: Channel#wait_for_confirms now waits for all confirms, in a thread safe way +- Changed: When server sends Connection.blocked the client isn't write blocked anymore, and can continue consume for instance. However, the on_blocked/unblocked callbacks should be used and manually stop publishing as the server otherwise will stop reading from the client socket. + ## [1.1.5] - 2024-03-15 - Fixed: Correctly reference the `UnexpectedFrameEnd` exception diff --git a/lib/amqp/client/version.rb b/lib/amqp/client/version.rb index cd14f6e..d9a67a9 100644 --- a/lib/amqp/client/version.rb +++ b/lib/amqp/client/version.rb @@ -3,6 +3,6 @@ module AMQP class Client # Version of the client library - VERSION = "1.1.5" + VERSION = "1.1.6" end end