Skip to content

Commit bc0f899

Browse files
committed
Version 1.6.0
1 parent 3be6ee7 commit bc0f899

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
**Closed issues:**
1212

1313
- README not up to date [\#154](https://github.com/rabbitmq/amqp091-go/issues/154)
14+
- Allow re-using default connection config \(custom properties\) [\#152](https://github.com/rabbitmq/amqp091-go/issues/152)
1415
- Rename package name to amqp in V2 [\#151](https://github.com/rabbitmq/amqp091-go/issues/151)
1516
- Helper types to declare quorum queues [\#144](https://github.com/rabbitmq/amqp091-go/issues/144)
1617
- Inefficient use of buffers reduces potential throughput for basicPublish with small messages. [\#141](https://github.com/rabbitmq/amqp091-go/issues/141)
@@ -21,6 +22,8 @@
2122

2223
**Merged pull requests:**
2324

25+
- Add automatic CHANGELOG.md generation [\#158](https://github.com/rabbitmq/amqp091-go/pull/158) ([lukebakken](https://github.com/lukebakken))
26+
- Supply library-defined props with NewConnectionProperties [\#157](https://github.com/rabbitmq/amqp091-go/pull/157) ([slagiewka](https://github.com/slagiewka))
2427
- Fix linter warnings [\#156](https://github.com/rabbitmq/amqp091-go/pull/156) ([Zerpet](https://github.com/Zerpet))
2528
- Remove outdated information from README [\#155](https://github.com/rabbitmq/amqp091-go/pull/155) ([scriptcoded](https://github.com/scriptcoded))
2629
- Add example producer using DeferredConfirm [\#149](https://github.com/rabbitmq/amqp091-go/pull/149) ([Zerpet](https://github.com/Zerpet))

connection.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const (
2828
defaultHeartbeat = 10 * time.Second
2929
defaultConnectionTimeout = 30 * time.Second
3030
defaultProduct = "AMQP 0.9.1 Client"
31-
buildVersion = "1.5.0"
31+
buildVersion = "1.6.0"
3232
platform = "golang"
3333
// Safer default that makes channel leaks a lot easier to spot
3434
// before they create operational headaches. See https://github.com/rabbitmq/rabbitmq-server/issues/1593.

0 commit comments

Comments
 (0)