Skip to content

Commit 97d206f

Browse files
committed
chore: bump version to 0.10.0-alpha.19
Bump the workspace package version and all internal `path` dependency pins from `0.10.0-alpha.18` to `0.10.0-alpha.19` across all crates, including the workspace root, library crates (openraft, openraft-rt, openraft-rt-tokio, openraft-rt-compio, openraft-rt-monoio, openraft-legacy, openraft-multiraft, openraft-metrics-otel), test/example/benchmark crates, and memstore variants.
1 parent 6005548 commit 97d206f

14 files changed

Lines changed: 24 additions & 24 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.10.0-alpha.18"
2+
version = "0.10.0-alpha.19"
33
edition = "2024"
44
authors = [
55
"Databend Authors <opensource@datafuselabs.com>",

benchmarks/minimal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ license = "MIT OR Apache-2.0"
1717
repository = "https://github.com/databendlabs/openraft"
1818

1919
[dependencies]
20-
openraft = { path = "../../openraft", version = "0.10.0-alpha.18", features = ["serde", "type-alias", "runtime-stats"] }
21-
openraft-legacy = { path = "../../legacy", version = "0.10.0-alpha.18" }
20+
openraft = { path = "../../openraft", version = "0.10.0-alpha.19", features = ["serde", "type-alias", "runtime-stats"] }
21+
openraft-legacy = { path = "../../legacy", version = "0.10.0-alpha.19" }
2222

2323
anyhow = { version = "1.0.63" }
2424
clap = { version = "4.2", features = ["derive"] }

examples/rocksstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repository = "https://github.com/databendlabs/openraft"
1818
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1919

2020
[dependencies]
21-
openraft = { path = "../../openraft", version = "0.10.0-alpha.18", features = ["serde", "type-alias"] }
21+
openraft = { path = "../../openraft", version = "0.10.0-alpha.19", features = ["serde", "type-alias"] }
2222
types-kv = { path = "../types-kv" }
2323

2424
byteorder = { version = "1.4.3" }

legacy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ license.workspace = true
1414
repository.workspace = true
1515

1616
[dependencies]
17-
openraft = { path = "../openraft", version = "0.10.0-alpha.18", default-features = false }
18-
openraft-macros = { path = "../macros", version = "0.10.0-alpha.18" }
17+
openraft = { path = "../openraft", version = "0.10.0-alpha.19", default-features = false }
18+
openraft-macros = { path = "../macros", version = "0.10.0-alpha.19" }
1919

2020
futures = { workspace = true }
2121
tokio = { workspace = true, features = ["io-util", "sync"] }

metrics-otel/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openraft-metrics-otel"
3-
version = "0.10.0-alpha.18"
3+
version = "0.10.0-alpha.19"
44
edition = "2024"
55
authors = [
66
"Databend Authors <opensource@datafuselabs.com>",
@@ -13,5 +13,5 @@ license = "MIT OR Apache-2.0"
1313
repository = "https://github.com/databendlabs/openraft"
1414

1515
[dependencies]
16-
openraft = { path = "../openraft", version = "0.10.0-alpha.18" }
16+
openraft = { path = "../openraft", version = "0.10.0-alpha.19" }
1717
opentelemetry = "0.30.0"

multiraft/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "openraft-multi"
33
description = "Multi-Raft adapters for connection sharing across Raft groups"
44
documentation = "https://docs.rs/openraft-multiraft"
55
readme = "README.md"
6-
version = "0.10.0-alpha.18"
6+
version = "0.10.0-alpha.19"
77
edition = "2024"
88
authors = ["Databend Authors <opensource@datafuselabs.com>"]
99
categories = ["network-programming", "asynchronous", "data-structures"]
@@ -13,6 +13,6 @@ license = "MIT OR Apache-2.0"
1313
repository = "https://github.com/databendlabs/openraft"
1414

1515
[dependencies]
16-
openraft = { path = "../openraft", version = "0.10.0-alpha.18", default-features = false }
16+
openraft = { path = "../openraft", version = "0.10.0-alpha.19", default-features = false }
1717
anyerror = { version = "0.1" }
1818

openraft/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ repository = { workspace = true }
1515

1616

1717
[dependencies]
18-
openraft-rt = { path = "../rt", version = "0.10.0-alpha.18" }
19-
openraft-rt-tokio = { path = "../rt-tokio", version = "0.10.0-alpha.18", optional = true }
20-
openraft-macros = { path = "../macros", version = "0.10.0-alpha.18" }
18+
openraft-rt = { path = "../rt", version = "0.10.0-alpha.19" }
19+
openraft-rt-tokio = { path = "../rt-tokio", version = "0.10.0-alpha.19", optional = true }
20+
openraft-macros = { path = "../macros", version = "0.10.0-alpha.19" }
2121

2222
anyerror = { workspace = true }
2323
anyhow = { workspace = true, optional = true }
@@ -44,7 +44,7 @@ peel-off = { workspace = true }
4444

4545
[dev-dependencies]
4646
anyhow = { workspace = true }
47-
openraft-rt-tokio = { path = "../rt-tokio", version = "0.10.0-alpha.18" }
47+
openraft-rt-tokio = { path = "../rt-tokio", version = "0.10.0-alpha.19" }
4848
pretty_assertions = { workspace = true }
4949
serde_json = { workspace = true }
5050

rt-compio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "openraft-rt-compio"
33
description = "compio AsyncRuntime support for Openraft"
44
documentation = "https://docs.rs/openraft-rt-compio"
55
readme = "README.md"
6-
version = "0.10.0-alpha.18"
6+
version = "0.10.0-alpha.19"
77
edition = "2024"
88
authors = ["Databend Authors <opensource@datafuselabs.com>"]
99
categories = ["algorithms", "asynchronous", "data-structures"]
@@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
1313
repository = "https://github.com/databendlabs/openraft"
1414

1515
[dependencies]
16-
openraft-rt = { path = "../rt", version = "0.10.0-alpha.18", features = ["single-threaded"] }
16+
openraft-rt = { path = "../rt", version = "0.10.0-alpha.19", features = ["single-threaded"] }
1717

1818
compio = { version = ">=0.14.0", features = ["runtime", "time"] }
1919
flume = { version = "0.11.1", default-features = false, features = ["async"] }

rt-monoio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "openraft-rt-monoio"
33
description = "monoio AsyncRuntime support for Openraft"
44
documentation = "https://docs.rs/openraft-rt-monoio"
55
readme = "README.md"
6-
version = "0.10.0-alpha.18"
6+
version = "0.10.0-alpha.19"
77
edition = "2024"
88
authors = [
99
"Databend Authors <opensource@datafuselabs.com>",
@@ -15,7 +15,7 @@ license = "MIT OR Apache-2.0"
1515
repository = "https://github.com/databendlabs/openraft"
1616

1717
[dependencies]
18-
openraft-rt = { path = "../rt", version = "0.10.0-alpha.18", features = ["single-threaded"] }
18+
openraft-rt = { path = "../rt", version = "0.10.0-alpha.19", features = ["single-threaded"] }
1919

2020
futures-util = { version = "0.3" }
2121
local-sync = { version = "0.1.1" }

rt-tokio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openraft-rt-tokio"
3-
version = "0.10.0-alpha.18"
3+
version = "0.10.0-alpha.19"
44
edition = "2024"
55
authors = [
66
"drdrxp <drdr.xp@gmail.com>",
@@ -13,7 +13,7 @@ readme = "README.md"
1313
description = "Tokio runtime implementation for Openraft"
1414

1515
[dependencies]
16-
openraft-rt = { path = "../rt", version = "0.10.0-alpha.18" }
16+
openraft-rt = { path = "../rt", version = "0.10.0-alpha.19" }
1717
tokio = { version = "1.39", default-features = false, features = ["rt", "rt-multi-thread", "sync", "time"] }
1818
futures-util = { version = "0.3" }
1919
rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] }

0 commit comments

Comments
 (0)