Skip to content

Commit

Permalink
Merge pull request #453 from ably/release/v0.3.1
Browse files Browse the repository at this point in the history
chore: 0.3.1 release
  • Loading branch information
splindsay-92 authored Jan 14, 2025
2 parents d3efc02 + 2b8e4e6 commit a1d504c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion react-native/package.json
Original file line number Diff line number Diff line change
@@ -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"
}
2 changes: 1 addition & 1 deletion src/core/version.ts
Original file line number Diff line number Diff line change
@@ -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 } };

0 comments on commit a1d504c

Please sign in to comment.