Skip to content

Commit

Permalink
1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
carlhoerberg committed Jan 12, 2022
1 parent b3edfc7 commit 9a28de3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.2] - 2022-01-12

### Fixed

- Websocket client now supports parsing AMQP frames split over multiple WebSocket frames (could happen with high throughput via websocket-tcp-relay).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudamqp/amqp-client",
"version": "1.3.1",
"version": "1.3.2",
"description": "AMQP 0-9-1 client, both for browsers (WebSocket) and node (TCP Socket)",
"type": "module",
"main": "dist/amqp-client.cjs",
Expand Down
2 changes: 1 addition & 1 deletion src/amqp-base-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import AMQPError from './amqp-error.js'
import AMQPMessage from './amqp-message.js'
import AMQPView from './amqp-view.js'

const VERSION = '1.3.1'
const VERSION = '1.3.2'

/**
* Base class for AMQPClients.
Expand Down

0 comments on commit 9a28de3

Please sign in to comment.