From 2b8e4e6c8c97d0b65ddd8b58cc59d36de8afb2d7 Mon Sep 17 00:00:00 2001 From: Steven Lindsay Date: Tue, 14 Jan 2025 17:22:21 +0000 Subject: [PATCH] Release v0.3.1 - Updates the package version - Updates the CHANGELOG - Updates the version.ts config --- CHANGELOG.md | 8 ++++++++ demo/package-lock.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- react-native/package.json | 2 +- src/core/version.ts | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7af4c75f..2a49037e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ This contains only the most important and/or user-facing changes; for a full changelog, see the commit history. +## [0.3.1](https://github.com/ably/ably-chat-js/tree/0.3.1) (2025-01-14) + +### Fixes + +There are no API changes, but this release is required to support a change in the underlying message attributes. + +- Upgraded the `package.json` dependency of `ably-js` to v2.6.2 [#449](https://github.com/ably/ably-chat-js/pull/449) + ## [0.3.0](https://github.com/ably/ably-chat-js/tree/0.3.0) (2025-01-06) ### Breaking Changes diff --git a/demo/package-lock.json b/demo/package-lock.json index f86519be..91779142 100644 --- a/demo/package-lock.json +++ b/demo/package-lock.json @@ -35,7 +35,7 @@ }, "..": { "name": "@ably/chat", - "version": "0.3.0", + "version": "0.3.1", "license": "Apache-2.0", "dependencies": { "async-mutex": "^0.5.0", diff --git a/package-lock.json b/package-lock.json index c4c042b3..9f8785b3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ably/chat", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ably/chat", - "version": "0.3.0", + "version": "0.3.1", "license": "Apache-2.0", "dependencies": { "async-mutex": "^0.5.0", diff --git a/package.json b/package.json index 8ed657ef..2df57a12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ably/chat", - "version": "0.3.0", + "version": "0.3.1", "description": "Ably Chat is a set of purpose-built APIs for a host of chat features enabling you to create 1:1, 1:Many, Many:1 and Many:Many chat rooms for any scale. It is designed to meet a wide range of chat use cases, such as livestreams, in-game communication, customer support, or social interactions in SaaS products.", "type": "module", "main": "dist/chat/ably-chat.umd.cjs", diff --git a/react-native/package.json b/react-native/package.json index 551b1de9..a4402dd1 100644 --- a/react-native/package.json +++ b/react-native/package.json @@ -1,6 +1,6 @@ { "name": "@ably/chat-react-native", - "version": "0.3.0", + "version": "0.3.1", "main": "../chat/dist/react/ably-chat-react.umd.cjs", "types": "../chat/dist/react/index.d.ts" } diff --git a/src/core/version.ts b/src/core/version.ts index 265f1886..45ef93fb 100644 --- a/src/core/version.ts +++ b/src/core/version.ts @@ -1,4 +1,4 @@ // Update this when you release a new version -export const VERSION = '0.3.0'; +export const VERSION = '0.3.1'; export const CHANNEL_OPTIONS_AGENT_STRING = `chat-js/${VERSION}`; export const DEFAULT_CHANNEL_OPTIONS = { params: { agent: CHANNEL_OPTIONS_AGENT_STRING } };