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 Feb 13, 2025
1 parent 1938405 commit 57c77f8
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 28 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/kv-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-kv-store"
version = "1.3.1"
version = "1.4.1"
edition = "2021"
license = "MIT"
description = "Key-value store component for Loro, a high-performance CRDTs framework"
Expand All @@ -10,7 +10,7 @@ authors = ["Liang Zhao", "Zixuan Chen"]


[dependencies]
loro-common = { path = "../loro-common", version = "1.3.1" }
loro-common = { path = "../loro-common", version = "1.4.1" }
bytes = { workspace = true }
fxhash = { workspace = true }
once_cell = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-common"
version = "1.3.1"
version = "1.4.1"
edition = "2021"
license = "MIT"
description = "Common types and functions for Loro. This is an internal lib of Loro."
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-ffi"
version = "1.3.5"
version = "1.4.1"
edition = "2021"
license = "MIT"
publish = false
Expand Down
6 changes: 3 additions & 3 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 = "1.3.5"
version = "1.4.1"
edition = "2021"
license = "MIT"
description = "Loro internal library. Do not use it directly as it's not stable."
Expand All @@ -18,11 +18,11 @@ generic-btree = { version = "^0.10.5" }
smallvec = { workspace = true }
loro-delta = { path = "../delta", version = "1.3.1", package = "loro-delta" }
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
loro-common = { path = "../loro-common", version = "1.3.1" }
loro-common = { path = "../loro-common", version = "1.4.1" }
fractional_index = { path = "../fractional_index", features = [
"serde",
], version = "1.2.7", package = "loro_fractional_index" }
loro-kv-store = { path = "../kv-store", version = "1.3.1" }
loro-kv-store = { path = "../kv-store", version = "1.4.1" }
fxhash = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/loro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro"
version = "1.3.5"
version = "1.4.1"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/loro/"
Expand All @@ -14,9 +14,9 @@ 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 = "1.3.5" }
loro-common = { path = "../loro-common", version = "1.3.1", features = ["serde_json"] }
loro-kv-store = { path = "../kv-store", version = "1.3.1" }
loro-internal = { path = "../loro-internal", version = "1.4.1" }
loro-common = { path = "../loro-common", version = "1.4.1", features = ["serde_json"] }
loro-kv-store = { path = "../kv-store", version = "1.4.1" }
delta = { path = "../delta", package = "loro-delta", version = "1.3.1" }
generic-btree = { version = "^0.10.5" }
enum-as-inner = { workspace = true }
Expand Down

0 comments on commit 57c77f8

Please sign in to comment.