Skip to content

Commit

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

## 0.3.0

- Merged [#102](https://github.com/achilleasa/dart_amqp/pull/102) to shutdown consumer streams when the underlying channel is closed.
- Merged [#105](https://github.com/achilleasa/dart_amqp/pull/105) to avoid using a null-check on a potentially null value in Connection Closed messages.
- Merged [#111](https://github.com/achilleasa/dart_amqp/pull/111) which adds a new tuning param (maxMissedHeartbeats) and raises HeartbeatFailedException when enough heartbeats are missed.
- Merged [#112](https://github.com/achilleasa/dart_amqp/pull/112) to fix some logic bugs in the reconnection flow.
- Merged [#116](https://github.com/achilleasa/dart_amqp/pull/116) to support publishing messages without having to declare an Exchange first.
- Bumped minor version due to the hearbeat-related changes.

## 0.2.5

- Merged [#95](https://github.com/achilleasa/dart_amqp/pull/95) to guard against sending heartbeats if the underlying socket 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.2.5",
"version": "0.3.0",
"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.2.5
version: 0.3.0
homepage: https://github.com/achilleasa/dart_amqp
environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down

0 comments on commit 84f1abb

Please sign in to comment.