Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version packages #364

Merged
merged 1 commit into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions .changeset/afraid-donkeys-stare.md

This file was deleted.

27 changes: 27 additions & 0 deletions crates/loro-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Changelog

## 0.16.0

### Minor Changes

- c12c2b9: Movable Tree Children & Undo

#### 🐛 Bug Fixes

- Refine error message on corrupted data (#356)
- Add MovableList to CONTAINER_TYPES (#359)
- Better jitter for fractional index (#360)

#### 🧪 Testing

- Add compatibility tests (#357)

#### Feat

- Make the encoding format forward and backward compatible (#329)
- Undo (#361)
- Use fractional index to order the children of the tree (#298)

#### 🐛 Bug Fixes

- Tree fuzz sort value (#351)
- Upgrade wasm-bindgen to fix str free err (#353)

## 0.15.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "loro-wasm",
"version": "0.15.3",
"version": "0.16.0",
"description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.",
"keywords": [
"crdt",
Expand Down
32 changes: 32 additions & 0 deletions loro-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

## 0.16.0

### Minor Changes

- c12c2b9: Movable Tree Children & Undo

#### 🐛 Bug Fixes

- Refine error message on corrupted data (#356)
- Add MovableList to CONTAINER_TYPES (#359)
- Better jitter for fractional index (#360)

#### 🧪 Testing

- Add compatibility tests (#357)

#### Feat

- Make the encoding format forward and backward compatible (#329)
- Undo (#361)
- Use fractional index to order the children of the tree (#298)

#### 🐛 Bug Fixes

- Tree fuzz sort value (#351)
- Upgrade wasm-bindgen to fix str free err (#353)

### Patch Changes

- Updated dependencies [c12c2b9]
- loro-wasm@0.16.0

## 0.15.3

### Patch Changes
Expand Down
11 changes: 9 additions & 2 deletions loro-js/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
{
"name": "loro-crdt",
"version": "0.15.3",
"version": "0.16.0",
"description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.",
"keywords": ["crdt", "CRDTs", "realtime", "collaboration", "sync", "p2p"],
"keywords": [
"crdt",
"CRDTs",
"realtime",
"collaboration",
"sync",
"p2p"
],
"main": "dist/loro.js",
"module": "dist/loro.mjs",
"typings": "dist/loro.d.ts",
Expand Down