Skip to content

Commit c2263d2

Browse files
committed
chore: release rust 1.5.6
1 parent 7b8e9d0 commit c2263d2

8 files changed

Lines changed: 45 additions & 38 deletions

File tree

Cargo.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/delta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-delta"
3-
version = "1.5.0"
3+
version = "1.5.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Loro internal library. It's used as a delta between two versions of text or lists. It's also an efficient Rope."

crates/kv-store/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-kv-store"
3-
version = "1.4.7"
3+
version = "1.5.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Key-value store component for Loro, a high-performance CRDTs framework"
@@ -10,7 +10,7 @@ authors = ["Liang Zhao", "Zixuan Chen"]
1010

1111

1212
[dependencies]
13-
loro-common = { path = "../loro-common", version = "1.4.7" }
13+
loro-common = { path = "../loro-common", version = "1.5.6" }
1414
bytes = { workspace = true }
1515
fxhash = { workspace = true }
1616
once_cell = { workspace = true }

crates/loro-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-common"
3-
version = "1.4.7"
3+
version = "1.5.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Common types and functions for Loro. This is an internal lib of Loro."

crates/loro-ffi/Cargo.toml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
[package]
22
name = "loro-ffi"
3-
version = "1.5.0"
3+
version = "1.5.6"
44
edition = "2021"
5+
description = "FFI bindings for Loro"
6+
authors = ["Liang Zhao", "Zixuan Chen"]
57
license = "MIT"
6-
publish = false
8+
homepage = "https://loro.dev"
9+
repository = "https://github.com/loro-dev/loro"
10+
keywords = ["crdt", "local-first"]
711

812
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
913

1014
[dependencies]
11-
loro = { path = "../loro", features = ["counter", "jsonpath"] }
15+
loro = { path = "../loro", features = [
16+
"counter",
17+
"jsonpath",
18+
], version = "1.5.6" }
1219
serde_json = { workspace = true }

crates/loro-internal/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro-internal"
3-
version = "1.5.1"
3+
version = "1.5.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Loro internal library. Do not use it directly as it's not stable."
@@ -16,13 +16,13 @@ keywords = ["crdt", "local-first"]
1616
[dependencies]
1717
generic-btree = { version = "^0.10.5" }
1818
smallvec = { workspace = true }
19-
loro-delta = { path = "../delta", version = "1.5.0", package = "loro-delta" }
19+
loro-delta = { path = "../delta", version = "1.5.6", package = "loro-delta" }
2020
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
21-
loro-common = { path = "../loro-common", version = "1.4.7" }
21+
loro-common = { path = "../loro-common", version = "1.5.6" }
2222
fractional_index = { path = "../fractional_index", features = [
2323
"serde",
2424
], version = "1.2.7", package = "loro_fractional_index" }
25-
loro-kv-store = { path = "../kv-store", version = "1.4.7" }
25+
loro-kv-store = { path = "../kv-store", version = "1.5.6" }
2626
fxhash = { workspace = true }
2727
serde = { workspace = true }
2828
thiserror = { workspace = true }

crates/loro-internal/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.5
1+
1.5.6

crates/loro/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loro"
3-
version = "1.5.1"
3+
version = "1.5.6"
44
edition = "2021"
55
license = "MIT"
66
documentation = "https://docs.rs/loro/"
@@ -14,12 +14,12 @@ keywords = ["crdt", "local-first"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
loro-internal = { path = "../loro-internal", version = "1.5.1" }
18-
loro-common = { path = "../loro-common", version = "1.4.7", features = [
17+
loro-internal = { path = "../loro-internal", version = "1.5.6" }
18+
loro-common = { path = "../loro-common", version = "1.5.6", features = [
1919
"serde_json",
2020
] }
21-
loro-kv-store = { path = "../kv-store", version = "1.4.7" }
22-
delta = { path = "../delta", package = "loro-delta", version = "1.5.0" }
21+
loro-kv-store = { path = "../kv-store", version = "1.5.6" }
22+
delta = { path = "../delta", package = "loro-delta", version = "1.5.6" }
2323
generic-btree = { version = "^0.10.5" }
2424
enum-as-inner = { workspace = true }
2525
tracing = { workspace = true }

0 commit comments

Comments
 (0)