From fde3915da4dfbeb8c3b972b354a843ff82a9c979 Mon Sep 17 00:00:00 2001 From: Dominik Piatek Date: Wed, 27 Sep 2023 10:55:16 +0100 Subject: [PATCH] Bump to 0.1.3 --- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/Spaces.ts | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b75833a5..b5257ece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG +## v0.1.3 + +Breaking changes in this release: +* `space.locks.getLocksForConnectionId` is now private by @lawrence-forooghian https://github.com/ably/spaces/pull/188 + +Other notable changes: +* Refactor space updates by @dpiatek in https://github.com/ably/spaces/pull/180 + * Fixes `space.updateProfileData` not passing the existing `ProfileData` if a function was passed in as an argument + * Fixes `space.leave` resetting `ProfileData` when no arguments are passed in + +**Full Changelog**: https://github.com/ably/spaces/compare/0.1.2...0.1.3 + ## v0.1.2 No breaking changes were introduced in this release. diff --git a/package-lock.json b/package-lock.json index 8a905d07..9850a22d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ably/spaces", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ably/spaces", - "version": "0.1.2", + "version": "0.1.3", "license": "ISC", "dependencies": { "nanoid": "^4.0.2" diff --git a/package.json b/package.json index 0b00dc90..b06ddb0a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ably/spaces", - "version": "0.1.2", + "version": "0.1.3", "description": "", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/src/Spaces.ts b/src/Spaces.ts index 86780063..5f252819 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.2'; + readonly version = '0.1.3'; constructor(client: Types.RealtimePromise) { this.client = client;