From 18873b59affb7eb7bc372723e8c598a646b1a2c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20H=C3=B6rberg?= Date: Tue, 13 Dec 2022 00:09:14 +0100 Subject: [PATCH] 2.1.1 --- package.json | 2 +- src/amqp-base-client.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7956fc6e..3e289a78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudamqp/amqp-client", - "version": "2.1.0", + "version": "2.1.1", "description": "AMQP 0-9-1 client, both for browsers (WebSocket) and node (TCP Socket)", "type": "module", "main": "lib/cjs/index.js", diff --git a/src/amqp-base-client.ts b/src/amqp-base-client.ts index 8047c0a7..fa0cc4d4 100644 --- a/src/amqp-base-client.ts +++ b/src/amqp-base-client.ts @@ -3,7 +3,7 @@ import { AMQPError } from './amqp-error.js' import { AMQPMessage } from './amqp-message.js' import { AMQPView } from './amqp-view.js' -const VERSION = '2.1.0' +const VERSION = '2.1.1' /** * Base class for AMQPClients.