Skip to content

Commit

Permalink
Bump version to 0.3.1 and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
achilleasa committed May 31, 2024
1 parent f2f5394 commit 6e5bc5b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.3.1

- Merged [#118](https://github.com/achilleasa/dart_amqp/pull/118) to support setting a timeout for establishing connections to the broker.

## 0.3.0

- Merged [#102](https://github.com/achilleasa/dart_amqp/pull/102) to shutdown consumer streams when the underlying channel is closed.
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 @@ -140,7 +140,7 @@ class _ChannelImpl implements Channel {
ConnectionStartOk clientResponse = ConnectionStartOk()
..clientProperties = {
"product": "Dart AMQP client",
"version": "0.3.0",
"version": "0.3.1",
"platform": "Dart/${Platform.operatingSystem}",
if (_client.settings.connectionName != null)
"connection_name": _client.settings.connectionName!,
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.3.0
version: 0.3.1
homepage: https://github.com/achilleasa/dart_amqp
environment:
sdk: ">=2.12.0 <4.0.0"
Expand Down

0 comments on commit 6e5bc5b

Please sign in to comment.