From 23a76d162b7833ed6e185c6fc8a2e15411ac31f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20H=C3=B6rberg?= Date: Thu, 23 Dec 2021 09:45:37 +0100 Subject: [PATCH] 1.3.0 --- 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 66cf4fa2..54718109 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudamqp/amqp-client", - "version": "1.2.2", + "version": "1.3.0", "description": "AMQP 0-9-1 client, both for browsers (WebSocket) and node (TCP Socket)", "type": "module", "main": "dist/amqp-client.cjs", diff --git a/src/amqp-base-client.ts b/src/amqp-base-client.ts index 6b3edcc4..70f9cf80 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 = '1.2.2' +const VERSION = '1.3.0' /** * Base class for AMQPClients.