Skip to content

Commit a1d504c

Browse files
authored
Merge pull request #453 from ably/release/v0.3.1
chore: 0.3.1 release
2 parents d3efc02 + 2b8e4e6 commit a1d504c

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
This contains only the most important and/or user-facing changes; for a full changelog, see the commit history.
44

5+
## [0.3.1](https://github.com/ably/ably-chat-js/tree/0.3.1) (2025-01-14)
6+
7+
### Fixes
8+
9+
There are no API changes, but this release is required to support a change in the underlying message attributes.
10+
11+
- Upgraded the `package.json` dependency of `ably-js` to v2.6.2 [#449](https://github.com/ably/ably-chat-js/pull/449)
12+
513
## [0.3.0](https://github.com/ably/ably-chat-js/tree/0.3.0) (2025-01-06)
614

715
### Breaking Changes

demo/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ably/chat",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"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.",
55
"type": "module",
66
"main": "dist/chat/ably-chat.umd.cjs",

react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ably/chat-react-native",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"main": "../chat/dist/react/ably-chat-react.umd.cjs",
55
"types": "../chat/dist/react/index.d.ts"
66
}

src/core/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Update this when you release a new version
2-
export const VERSION = '0.3.0';
2+
export const VERSION = '0.3.1';
33
export const CHANNEL_OPTIONS_AGENT_STRING = `chat-js/${VERSION}`;
44
export const DEFAULT_CHANNEL_OPTIONS = { params: { agent: CHANNEL_OPTIONS_AGENT_STRING } };

0 commit comments

Comments
 (0)