From 63827f4fc09027f45fbe9d976d2bcca2cfc2fa8c Mon Sep 17 00:00:00 2001 From: Achilleas Anagnostopoulos Date: Thu, 3 Nov 2022 22:14:38 +0000 Subject: [PATCH] Bump version to 0.2.3 --- CHANGELOG.md | 6 +++++- lib/src/client/impl/channel_impl.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fcd9ef..69ab323 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,14 @@ # Changelog +## 0.2.3 + +- Merged [#85](https://github.com/achilleasa/dart_amqp/pull/85) to fix some minor lint issues that were discovered after bumping the lint_core dep version. + ## 0.2.2 - Merged [#78](https://github.com/achilleasa/dart_amqp/pull/78) to support queue properties for `bindQueueConsumer` and `bindPrivateQueueConsumer`. - Merged [#80](https://github.com/achilleasa/dart_amqp/pull/80) to expose the `deliveryTag` field from `AmqpMessage` instances. -- Merged [#82](https://github.com/achilleasa/dart_amqp/pull/82) to support changine the value of the `global` parameter when invoking `channel.qos()`. +- Merged [#82](https://github.com/achilleasa/dart_amqp/pull/82) to support changing the value of the `global` parameter when invoking `channel.qos()`. - Merged [#84](https://github.com/achilleasa/dart_amqp/pull/84) to support heartbeats. ## 0.2.1 diff --git a/lib/src/client/impl/channel_impl.dart b/lib/src/client/impl/channel_impl.dart index d66a827..56d915c 100644 --- a/lib/src/client/impl/channel_impl.dart +++ b/lib/src/client/impl/channel_impl.dart @@ -129,7 +129,7 @@ class _ChannelImpl implements Channel { ConnectionStartOk clientResponse = ConnectionStartOk() ..clientProperties = { "product": "Dart AMQP client", - "version": "0.2.2", + "version": "0.2.3", "platform": "Dart/${Platform.operatingSystem}" } ..locale = 'en_US' diff --git a/pubspec.yaml b/pubspec.yaml index 5460f31..0afbd82 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: dart_amqp description: > A native dart AMQP client supporting version 0.9.1 of the AMQP protocol. It features an asynchronous API, pluggable authentication providers and TLS support. -version: 0.2.2 +version: 0.2.3 homepage: https://github.com/achilleasa/dart_amqp environment: sdk: ">=2.12.0 <3.0.0"