Skip to content

Commit 487ec6c

Browse files
authored
chore: merge v1.4.7 (#701)
* fix: upgrade columnar * chore: pre release rust 1.4.7 * chore: merge main
1 parent d3a1bb5 commit 487ec6c

File tree

7 files changed

+33
-33
lines changed

7 files changed

+33
-33
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ enum_dispatch = "0.3.11"
2121
enum-as-inner = "0.6.0"
2222
fxhash = "0.2.1"
2323
tracing = { version = "0.1" }
24-
serde_columnar = { version = "0.3.10" }
24+
serde_columnar = { version = "0.3.11" }
2525
serde_json = "1.0"
2626
thiserror = "1"
2727
smallvec = { version = "1.8.0", features = ["serde"] }

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.6"
3+
version = "1.4.7"
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.6" }
13+
loro-common = { path = "../loro-common", version = "1.4.7" }
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.6"
3+
version = "1.4.7"
44
edition = "2021"
55
license = "MIT"
66
description = "Common types and functions for Loro. This is an internal lib of Loro."

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.0"
3+
version = "1.5.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Loro internal library. Do not use it directly as it's not stable."
@@ -18,11 +18,11 @@ generic-btree = { version = "^0.10.5" }
1818
smallvec = { workspace = true }
1919
loro-delta = { path = "../delta", version = "1.5.0", package = "loro-delta" }
2020
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
21-
loro-common = { path = "../loro-common", version = "1.4.6" }
21+
loro-common = { path = "../loro-common", version = "1.4.7" }
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.6" }
25+
loro-kv-store = { path = "../kv-store", version = "1.4.7" }
2626
fxhash = { workspace = true }
2727
serde = { workspace = true }
2828
thiserror = { workspace = true }
@@ -56,7 +56,7 @@ pretty_assertions = "1.4.1"
5656
thread_local = "1.1.8"
5757

5858
[target.'cfg(loom)'.dependencies]
59-
loom = { version= "0.7", features = ["checkpoint"] }
59+
loom = { version = "0.7", features = ["checkpoint"] }
6060

6161
[lints.rust]
6262
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }

crates/loro-internal/src/arena/str_arena.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ mod test {
191191
fn slice_long_unicode_correctly() {
192192
let mut arena = StrArena::default();
193193
let src = "一二34567八九零";
194-
for s in std::iter::repeat(src).take(100) {
194+
for s in std::iter::repeat_n(src, 100) {
195195
arena.alloc(s);
196196
}
197197

crates/loro/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"
3-
version = "1.5.0"
3+
version = "1.5.1"
44
edition = "2021"
55
license = "MIT"
66
documentation = "https://docs.rs/loro/"
@@ -14,11 +14,11 @@ 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.0" }
18-
loro-common = { path = "../loro-common", version = "1.4.6", features = [
17+
loro-internal = { path = "../loro-internal", version = "1.5.1" }
18+
loro-common = { path = "../loro-common", version = "1.4.7", features = [
1919
"serde_json",
2020
] }
21-
loro-kv-store = { path = "../kv-store", version = "1.4.6" }
21+
loro-kv-store = { path = "../kv-store", version = "1.4.7" }
2222
delta = { path = "../delta", package = "loro-delta", version = "1.5.0" }
2323
generic-btree = { version = "^0.10.5" }
2424
enum-as-inner = { workspace = true }

0 commit comments

Comments
 (0)