Skip to content

Commit

Permalink
Bump version to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
achilleasa committed Nov 3, 2022
1 parent 0ad24cf commit 63827f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/src/client/impl/channel_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 63827f4

Please sign in to comment.