Skip to content

Commit

Permalink
chore: bump rust crates version
Browse files Browse the repository at this point in the history
  • Loading branch information
zxch3n committed Sep 7, 2024
1 parent 2437089 commit 7be915e
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 31 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/delta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-delta"
version = "0.16.10"
version = "0.16.12"
edition = "2021"
license = "MIT"
description = "Loro internal library. It's used as a delta between two versions of text or lists. It's also an efficient Rope."
Expand Down
2 changes: 1 addition & 1 deletion crates/fractional_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro_fractional_index"
version = "0.16.10"
version = "0.16.12"
edition = "2021"
license = "MIT"
description = "Fraction index for Loro. Fork and modified from jamsocket/fractional_index"
Expand Down
4 changes: 2 additions & 2 deletions crates/loro-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-common"
version = "0.16.10"
version = "0.16.12"
edition = "2021"
license = "MIT"
description = "Common types and functions for Loro. This is an internal lib of Loro."
Expand All @@ -14,7 +14,7 @@ keywords = ["crdt", "local-first"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rle = { path = "../rle", version = "0.16.10", package = "loro-rle" }
rle = { path = "../rle", version = "0.16.12", package = "loro-rle" }
serde = { workspace = true }
thiserror = "1.0.43"
wasm-bindgen = { version = "=0.2.92", optional = true }
Expand Down
10 changes: 5 additions & 5 deletions crates/loro-internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-internal"
version = "0.16.10"
version = "0.16.12"
edition = "2021"
license = "MIT"
description = "Loro internal library. Do not use it directly as it's not stable."
Expand All @@ -15,12 +15,12 @@ keywords = ["crdt", "local-first"]

[dependencies]
smallvec = { workspace = true }
loro-delta = { path = "../delta", version = "0.16.10", package = "loro-delta" }
rle = { path = "../rle", version = "0.16.10", package = "loro-rle" }
loro-common = { path = "../loro-common", version = "0.16.10" }
loro-delta = { path = "../delta", version = "0.16.12", package = "loro-delta" }
rle = { path = "../rle", version = "0.16.12", package = "loro-rle" }
loro-common = { path = "../loro-common", version = "0.16.12" }
fractional_index = { path = "../fractional_index", features = [
"serde",
], version = "0.16.10", package = "loro_fractional_index" }
], version = "0.16.12", package = "loro_fractional_index" }
postcard = "1"
fxhash = { workspace = true }
serde = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/loro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro"
version = "0.16.10"
version = "0.16.12"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/loro/"
Expand All @@ -14,8 +14,8 @@ keywords = ["crdt", "local-first"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
loro-internal = { path = "../loro-internal", version = "0.16.10" }
delta = { path = "../delta", package = "loro-delta", version = "0.16.10" }
loro-internal = { path = "../loro-internal", version = "0.16.12" }
delta = { path = "../delta", package = "loro-delta", version = "0.16.12" }
generic-btree = { version = "^0.10.5" }
enum-as-inner = "0.6.0"
either = "1.9.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/rle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-rle"
version = "0.16.10"
version = "0.16.12"
edition = "2021"
license = "MIT"
description = "A internal library of loro for storing and manipulating run-length encoded data. Do not use it directly."
Expand Down

0 comments on commit 7be915e

Please sign in to comment.