From e3d6478789d039e60589a9554519e8f6187c5f43 Mon Sep 17 00:00:00 2001 From: Andrew Bulat Date: Wed, 17 Jul 2024 16:29:01 +0100 Subject: [PATCH 1/2] chore: bump version for 0.4.0 release --- demo/package-lock.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/version.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/demo/package-lock.json b/demo/package-lock.json index e126d4cd..0064c36d 100644 --- a/demo/package-lock.json +++ b/demo/package-lock.json @@ -41,7 +41,7 @@ }, "..": { "name": "@ably/spaces", - "version": "0.3.1", + "version": "0.4.0", "license": "ISC", "dependencies": { "nanoid": "^3.3.7" diff --git a/package-lock.json b/package-lock.json index 918d8e4a..974abc5d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ably/spaces", - "version": "0.3.1", + "version": "0.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ably/spaces", - "version": "0.3.1", + "version": "0.4.0", "license": "ISC", "dependencies": { "nanoid": "^3.3.7" diff --git a/package.json b/package.json index 18c90331..597d9c29 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ably/spaces", - "version": "0.3.1", + "version": "0.4.0", "description": "", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/src/version.ts b/src/version.ts index 02e02a02..95bd727f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // Manually update when bumping version -const VERSION = '0.3.1'; +const VERSION = '0.4.0'; export { VERSION }; From c744b9bdcca4f4c7dfae632c290cb7f36a38fc64 Mon Sep 17 00:00:00 2001 From: Andrew Bulat Date: Wed, 17 Jul 2024 16:41:27 +0100 Subject: [PATCH 2/2] chore: update changelog for 0.4.0 release --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e9e5cee..cc82495a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## v0.4.0 + +Breaking changes in this release: + +* Upgrade to using Ably JavaScript SDK v2 [\#325](https://github.com/ably/spaces/pull/325) + +With this release the Spaces SDK now requires Ably JavaScript SDK v2 to be installed and used with the Spaces client. Please refer to [Ably JavaScript SDK v2](https://github.com/ably/ably-js/releases/tag/2.0.0) GitHub release notes for the list of breaking changes and the corresponding migration guide. + +**Full Changelog**: https://github.com/ably/spaces/compare/0.3.1...0.4.0 + ## v0.3.1 No breaking changes were introduced in this release.