Skip to content

Commit

Permalink
Bump to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Piatek authored and dpiatek committed Sep 27, 2023
1 parent 99d8200 commit fde3915
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Spaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fde3915

Please sign in to comment.