From f9e39895deb7bc0d059f3d15acf98b882a2e8c22 Mon Sep 17 00:00:00 2001 From: Gyubong Date: Fri, 5 Jan 2024 13:46:01 +0900 Subject: [PATCH] v0.1.12 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- Makefile | 2 +- binding/python/Cargo.lock | 6 +++--- binding/python/Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebb26d06..95bb8ea3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -875,7 +875,7 @@ dependencies = [ [[package]] name = "harness" -version = "0.1.11" +version = "0.1.12" dependencies = [ "actix-rt", "actix-web", @@ -1226,7 +1226,7 @@ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "memstore" -version = "0.1.11" +version = "0.1.12" dependencies = [ "actix-rt", "actix-web", @@ -1606,7 +1606,7 @@ dependencies = [ [[package]] name = "raftify" -version = "0.1.11" +version = "0.1.12" dependencies = [ "async-trait", "bincode", diff --git a/Cargo.toml b/Cargo.toml index a52ddde3..0cd90fa3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ default-members = [ ] [workspace.package] -version = "0.1.11" +version = "0.1.12" authors = ["Lablup Inc."] edition = "2021" description = """ diff --git a/Makefile b/Makefile index 52353a0a..c67871ac 100644 --- a/Makefile +++ b/Makefile @@ -24,4 +24,4 @@ publish-rs: cargo publish -p raftify --allow-dirty --no-verify publish-py: - cd bindings/python && make publish && cd ../../ + cd binding/python && make publish && cd ../../ diff --git a/binding/python/Cargo.lock b/binding/python/Cargo.lock index 78920e8f..b1af32db 100644 --- a/binding/python/Cargo.lock +++ b/binding/python/Cargo.lock @@ -1294,9 +1294,9 @@ dependencies = [ [[package]] name = "raftify" -version = "0.1.11" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8b89ee4d325d13b61d5e62c47c6163526150ea8bd905b892c3103ec08d7e28f" +checksum = "44223132737011d86e8d4d629c10196ef2527f0a9b3528e9db8b69b407034de4" dependencies = [ "async-trait", "bincode", @@ -1321,7 +1321,7 @@ dependencies = [ [[package]] name = "raftify-py" -version = "0.1.11" +version = "0.1.12" dependencies = [ "async-trait", "bincode", diff --git a/binding/python/Cargo.toml b/binding/python/Cargo.toml index fe59b420..9d574db9 100644 --- a/binding/python/Cargo.toml +++ b/binding/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raftify-py" -version = "0.1.11" +version = "0.1.12" authors = ["Lablup Inc."] license = "Apache-2.0" repository = "https://github.com/lablup/raftify" @@ -17,7 +17,7 @@ edition = "2021" pyo3 = { git = "https://github.com/jopemachine/pyo3", features = ["extension-module", "multiple-pymethods"] } tokio = { version = "1.4", features = ["full"] } async-trait = "0.1.48" -raftify = { version = "0.1.11", default-features = false } +raftify = { version = "0.1.12", default-features = false } slog = { version = "2.2", features = ["max_level_trace", "release_max_level_trace"] } slog-envlogger = "2.1.0" slog-term = "2.9.0"