diff --git a/CHANGELOG.md b/CHANGELOG.md index 680e1cc5..b75833a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## v0.1.2 + +No breaking changes were introduced in this release. + +* cursors: Fix cursor batching calculation by @lmars in https://github.com/ably/spaces/pull/169 +* [MMB-260] Update default batch time to 25ms by @dpiatek in https://github.com/ably/spaces/pull/167 + ## v0.1.1 No breaking changes were introduced in this release. diff --git a/package-lock.json b/package-lock.json index 6fe1d7e4..30081ee6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ably/spaces", - "version": "0.1.1", + "version": "0.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ably/spaces", - "version": "0.1.1", + "version": "0.1.2", "license": "ISC", "dependencies": { "nanoid": "^4.0.2" diff --git a/package.json b/package.json index 809725a1..18d44e97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ably/spaces", - "version": "0.1.1", + "version": "0.1.2", "description": "", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/src/Spaces.ts b/src/Spaces.ts index be94263b..86780063 100644 --- a/src/Spaces.ts +++ b/src/Spaces.ts @@ -17,7 +17,7 @@ class Spaces { client: Types.RealtimePromise; connection: Types.ConnectionPromise; - readonly version = '0.1.1'; + readonly version = '0.1.2'; constructor(client: Types.RealtimePromise) { this.client = client;