Skip to content

Commit bb66d03

Browse files
committed
2.0.2
1 parent 5c06240 commit bb66d03

3 files changed

Lines changed: 8 additions & 2 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+
## [2.0.2] - 2022-03-04
11+
12+
### Fixed
13+
14+
- Frame errors because frame buffer was reused
15+
1016
## [2.0.1] - 2022-03-04
1117

1218
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudamqp/amqp-client",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "AMQP 0-9-1 client, both for browsers (WebSocket) and node (TCP Socket)",
55
"type": "module",
66
"main": "lib/cjs/index.js",

src/amqp-base-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { AMQPError } from './amqp-error.js'
33
import { AMQPMessage } from './amqp-message.js'
44
import { AMQPView } from './amqp-view.js'
55

6-
const VERSION = '2.0.1'
6+
const VERSION = '2.0.2'
77

88
/**
99
* Base class for AMQPClients.

0 commit comments

Comments
 (0)