diff --git a/CHANGELOG.md b/CHANGELOG.md index dfb6beae..2b2443aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # CHANGELOG +## v0.3.0 + +Breaking changes in this release: + +* [COL-577] Use ::$space as space channel suffix [\#244](https://github.com/ably/spaces/pull/244) + +This change updates the name of the channel [used by spaces internally](./docs/channel-usage.md). + +Previously, if you create a space with `spaces.get('example')`, this would create an Ably channel named `example-space`. This will now become `example::$space`. + +When deploying this change, it's important to note that there will be no continuty between the channel used so far and the channel used after the update. If you have customer applications that are running spaces, sessions using the old channel should end before this update is implemented. + +Other notable changes: + +* [COL-533] Upgrade Ably to 1.2.46 by @lawrence-forooghian in https://github.com/ably/spaces/pull/235 +* [COL-56] Add integration tests by @lawrence-forooghian in https://github.com/ably/spaces/pull/229 + +**Full Changelog**: https://github.com/ably/spaces/compare/0.2.0...0.3.0 + ## v0.2.0 In this release, we introduce React hooks for Spaces [\#233](https://github.com/ably/spaces/pull/233). See the [React Hooks documentation](/docs/react.md) for further details. diff --git a/package-lock.json b/package-lock.json index e972621b..94fdecd4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ably/spaces", - "version": "0.2.0", + "version": "0.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ably/spaces", - "version": "0.2.0", + "version": "0.3.0", "license": "ISC", "dependencies": { "nanoid": "^5.0.2" diff --git a/package.json b/package.json index f18eddd5..e902c4e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ably/spaces", - "version": "0.2.0", + "version": "0.3.0", "description": "", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/src/version.ts b/src/version.ts index 95f51588..e1d77662 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // Manually update when bumping version -const VERSION = '0.2.0'; +const VERSION = '0.3.0'; export { VERSION };