mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-28 09:25:36 +00:00
chore: version packages (#364)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
4514594709
commit
d01fd66e39
5 changed files with 69 additions and 30 deletions
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
"loro-wasm": minor
|
||||
"loro-crdt": minor
|
||||
---
|
||||
|
||||
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)
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue