Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjg authored Dec 11, 2023
1 parent 21d8a9a commit 8002a81
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions rust/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.5.4

* more performance improvements when loading documents with large numbers
of objects
* modify the sync protocol to send the entire document in the first message if
the other end has nothing. This dramatically improves the speed of initial
sync. This is a backwards compatible change.

# 0.5.3

* numerous performance improvements
Expand Down
4 changes: 2 additions & 2 deletions rust/automerge-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "automerge-test"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/automerge/automerge"
rust-version = "1.57.0"
description = "Utilities for testing automerge libraries"

[dependencies]
automerge = { version = "0.5.2", path = "../automerge" }
automerge = { version = "0.5.4", path = "../automerge" }
smol_str = { version = "0.2", features=["serde"] }
serde = { version = "^1.0", features=["derive"] }
decorum = "0.3.1"
Expand Down
2 changes: 1 addition & 1 deletion rust/automerge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "automerge"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
license = "MIT"
repository = "https://github.com/automerge/automerge"
Expand Down

0 comments on commit 8002a81

Please sign in to comment.