Skip to content

Commit 946b49c

Browse files
committed
Bump to 0.3.0
1 parent d8795c8 commit 946b49c

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

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

3+
## v0.3.0
4+
5+
Breaking changes in this release:
6+
7+
* [COL-577] Use ::$space as space channel suffix [\#244](https://github.com/ably/spaces/pull/244)
8+
9+
This change updates the name of the channel [used by spaces internally](./docs/channel-usage.md).
10+
11+
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`.
12+
13+
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.
14+
15+
Other notable changes:
16+
17+
* [COL-533] Upgrade Ably to 1.2.46 by @lawrence-forooghian in https://github.com/ably/spaces/pull/235
18+
* [COL-56] Add integration tests by @lawrence-forooghian in https://github.com/ably/spaces/pull/229
19+
20+
**Full Changelog**: https://github.com/ably/spaces/compare/0.2.0...0.3.0
21+
322
## v0.2.0
423

524
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.

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.2.0",
3+
"version": "0.3.0",
44
"description": "",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Manually update when bumping version
2-
const VERSION = '0.2.0';
2+
const VERSION = '0.3.0';
33
export { VERSION };

0 commit comments

Comments
 (0)