Skip to content

Commit da37a16

Browse files
authored
bump version to 3.4.0 (#170)
* fix: make sed version command run on macos * bump version to 3.4.0
1 parent 1913a67 commit da37a16

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.4.0] - 2025-11-12
11+
12+
### Added
13+
14+
- Add AsyncGenerator support to subscribe() for improved DX ([#169](https://github.com/cloudamqp/amqp-client.js/pull/169))
15+
1016
## [3.3.2] - 2025-09-12
1117

1218
### Fixed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudamqp/amqp-client",
3-
"version": "3.3.2",
3+
"version": "3.4.0",
44
"description": "AMQP 0-9-1 client, both for browsers (WebSocket) and node (TCP Socket)",
55
"type": "module",
66
"main": "lib/cjs/index.js",
@@ -43,7 +43,7 @@
4343
"postbuild": "echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
4444
"prepare": "npm run build",
4545
"preversion": "npm run test:local",
46-
"version": "sed -i'' \"s/VERSION = .*/VERSION = \\\"$npm_package_version\\\"/\" src/amqp-base-client.ts && npm run format && npm run update-changelog && git add -A",
46+
"version": "sed -i '' \"s/VERSION = .*/VERSION = \\\"$npm_package_version\\\"/\" src/amqp-base-client.ts && npm run format && npm run update-changelog && git add -A",
4747
"postversion": "npm run create-tag && git push && git push --tags",
4848
"release": "npm version patch --no-git-tag-version",
4949
"release:minor": "npm version minor --no-git-tag-version",

src/amqp-base-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { AMQPMessage } from "./amqp-message.js"
55
import { AMQPView } from "./amqp-view.js"
66
import type { Logger } from "./types.js"
77

8-
export const VERSION = "3.3.2"
8+
export const VERSION = "3.4.0"
99

1010
/**
1111
* Base class for AMQPClients.

0 commit comments

Comments
 (0)