Skip to content

Commit fde3915

Browse files
Dominik Piatekdpiatek
authored andcommitted
Bump to 0.1.3
1 parent 99d8200 commit fde3915

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## v0.1.3
4+
5+
Breaking changes in this release:
6+
* `space.locks.getLocksForConnectionId` is now private by @lawrence-forooghian https://github.com/ably/spaces/pull/188
7+
8+
Other notable changes:
9+
* Refactor space updates by @dpiatek in https://github.com/ably/spaces/pull/180
10+
* Fixes `space.updateProfileData` not passing the existing `ProfileData` if a function was passed in as an argument
11+
* Fixes `space.leave` resetting `ProfileData` when no arguments are passed in
12+
13+
**Full Changelog**: https://github.com/ably/spaces/compare/0.1.2...0.1.3
14+
315
## v0.1.2
416

517
No breaking changes were introduced in this release.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ably/spaces",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

src/Spaces.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Spaces {
1717
client: Types.RealtimePromise;
1818
connection: Types.ConnectionPromise;
1919

20-
readonly version = '0.1.2';
20+
readonly version = '0.1.3';
2121

2222
constructor(client: Types.RealtimePromise) {
2323
this.client = client;

0 commit comments

Comments
 (0)