Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Piatek committed Sep 4, 2023
1 parent d44b0b4 commit 99ed9d8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
19 changes: 11 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# CHANGELOG

The Collaborative Spaces SDK is currently under development, see [Github releases](https://github.com/ably-labs/spaces/releases) for our alpha releases.
## v0.1.0

## 0.0.13 - 2023-08-24
In this release, we're advancing Spaces from alpha to beta. Simultaneously, while we're introducing this library to a wider audience, we've decided to move it to the `ably` organisation. Spaces is no longer an experiment, it's something we see as an excellent supplement to our core SDKs and are committed to grow and support it (if you are one of our early adopters, this means you need to update your `package.json` from `@ably-labs/spaces` to `@ably/spaces`).

### Added
Visit [official documentation on Ably's website]() to learn more about Spaces.

- Component locking
- Members namespace
- getSelf() and getOthers() methods for cursors
The following APIs are currently available:
- **Space** - a virtual area of your application in which realtime collaboration between users can take place.
- **Avatar stack** - the most common way of showing the online status of users in an application.
- **Member locations** - track where users are to see which part of your application they're interacting with.
- **Live cursors** - track the cursor positions of users in realtime.
- **Component locking** - optimistically lock stateful UI components before editing them.

### Changed
Your feedback will help prioritize improvements and fixes in subsequent releases. Spaces features have been validated for a set of use-cases, but breaking changes may still occur between minor releases until we reach 1.0.0. The beta is implemented based on real world situations and loads, but we'd advise to take caution when adding it to production environments.

- Cursor replay intervals
Please reach out to [beta@ably.com](mailto:beta@ably.com) for any questions or share feedback through [this form]( https://go.ably.com/spaces-feedback).
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/spaces",
"version": "0.0.13",
"version": "0.1.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Spaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Spaces {
client: Types.RealtimePromise;
connection: Types.ConnectionPromise;

readonly version = '0.0.13';
readonly version = '0.1.0';

constructor(client: Types.RealtimePromise) {
this.client = client;
Expand Down

0 comments on commit 99ed9d8

Please sign in to comment.