diff --git a/package.json b/package.json index f8c342ed..f0754feb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudamqp/amqp-client", - "version": "1.3.2", + "version": "2.0.0", "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 3ec22091..7674a315 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.3.2' +const VERSION = '2.0.0' /** * Base class for AMQPClients.