Skip to content

Commit

Permalink
BumpVer: 0.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
drmingdrmer committed Dec 13, 2023
1 parent 7dadeaa commit 3169ea2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.8.7"
version = "0.8.8"
edition = "2021"
authors = [
"Databend Authors <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion cluster_benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repository = "https://github.com/datafuselabs/openraft"
[dependencies]

[dev-dependencies]
openraft = { path="../openraft", version = "0.8.7", features = ["serde", "storage-v2"] }
openraft = { path="../openraft", version = "0.8.8", features = ["serde", "storage-v2"] }

anyhow = "1.0.63"
maplit = "1.0.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/raft-kv-rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ serde_json = "1.0.57"
tide = { version = "0.16" }
# for toy-rpc, use `serde_json` instead of the default `serde_bincode`:
# bincode which enabled by default by toy-rpc, does not support `#[serde(flatten)]`: https://docs.rs/bincode/2.0.0-alpha.1/bincode/serde/index.html#known-issues
toy-rpc = { version = "0.8.7", default-features = false, features = [ "serde_json", "ws_async_std", "server", "client", "async_std_runtime", ] }
toy-rpc = { version = "0.8.8", default-features = false, features = [ "serde_json", "ws_async_std", "server", "client", "async_std_runtime", ] }
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }

Expand Down
2 changes: 1 addition & 1 deletion memstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = { workspace = true }
repository = { workspace = true }

[dependencies]
openraft = { path= "../openraft", version = "0.8.7", features=["serde"] }
openraft = { path= "../openraft", version = "0.8.8", features=["serde"] }

serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion rocksstore-compat07/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repository = { workspace = true }


[dependencies]
openraft = { path = "../openraft", package = "openraft", version = "0.8.7", features = ["compat-07", "bt"] }
openraft = { path = "../openraft", package = "openraft", version = "0.8.8", features = ["compat-07", "bt"] }

async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
byteorder = "1.4.3"
Expand Down
2 changes: 1 addition & 1 deletion rocksstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repository = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
openraft = { path= "../openraft", version = "0.8.7", features=["serde"] }
openraft = { path= "../openraft", version = "0.8.8", features=["serde"] }

rocksdb = "0.20.1"
byteorder = "1.4.3"
Expand Down
2 changes: 1 addition & 1 deletion sledstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = { workspace = true }
repository = { workspace = true }

[dependencies]
openraft = { path= "../openraft", version = "0.8.7", features=["serde"] }
openraft = { path= "../openraft", version = "0.8.8", features=["serde"] }

sled = "0.34.7"
byteorder = "1.4.3"
Expand Down
2 changes: 1 addition & 1 deletion stores/rocksstore-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repository = "https://github.com/datafuselabs/openraft"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
openraft = { path= "../../openraft", version = "0.8.7", features=["serde", "storage-v2"] }
openraft = { path= "../../openraft", version = "0.8.8", features=["serde", "storage-v2"] }

rocksdb = "0.20.1"
rand = "*"
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repository = { workspace = true }
[dependencies]

[dev-dependencies]
openraft = { path="../openraft", version = "0.8.7" }
openraft = { path="../openraft", version = "0.8.8" }
openraft-memstore = { path="../memstore" }

anyerror = { workspace = true }
Expand Down

0 comments on commit 3169ea2

Please sign in to comment.