From 80bb5788cc9b065cfd91f4e78cd15ae8ad8f3ac0 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Sun, 7 Apr 2024 18:00:32 +1000 Subject: [PATCH] chore: Release --- benchmarker/Cargo.toml | 4 ++-- example-client/Cargo.toml | 2 +- libqueued/Cargo.toml | 2 +- queued/Cargo.toml | 4 ++-- stochastic-stresser/Cargo.toml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/benchmarker/Cargo.toml b/benchmarker/Cargo.toml index 6af65ca..40c6bd0 100644 --- a/benchmarker/Cargo.toml +++ b/benchmarker/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "queued-benchmarker" publish = false -version = "0.1.0" +version = "0.2.0" edition = "2021" [dependencies] bytesize = { version = "1.2.0", features = ["serde"] } futures = "0.3.28" -libqueued = { version = "0.12.0", path = "../libqueued" } +libqueued = { version = "0.13.0", path = "../libqueued" } off64 = "0.6.0" parking_lot = "0.12.1" roaring = "0.10.1" diff --git a/example-client/Cargo.toml b/example-client/Cargo.toml index c6a5dff..6d46a3b 100644 --- a/example-client/Cargo.toml +++ b/example-client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "queued-example-client" publish = false -version = "0.0.1" +version = "0.1.0" edition = "2021" [dependencies] diff --git a/libqueued/Cargo.toml b/libqueued/Cargo.toml index 3608d8d..4469b96 100644 --- a/libqueued/Cargo.toml +++ b/libqueued/Cargo.toml @@ -6,7 +6,7 @@ homepage = "https://github.com/wilsonzlin/queued" keywords = ["queue", "message", "fifo"] categories = ["database-implementations", "web-programming"] repository = "https://github.com/wilsonzlin/queued.git" -version = "0.12.0" +version = "0.13.0" authors = ["Wilson Lin "] edition = "2021" diff --git a/queued/Cargo.toml b/queued/Cargo.toml index d7a746f..6cd06d1 100644 --- a/queued/Cargo.toml +++ b/queued/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" keywords = ["queue", "message", "fifo"] categories = ["database-implementations", "web-programming"] repository = "https://github.com/wilsonzlin/queued.git" -version = "0.8.3" +version = "0.9.0" authors = ["Wilson Lin "] edition = "2021" @@ -29,7 +29,7 @@ dashmap = "5.5.3" erased-serde = "0.4.4" itertools = "0.12.1" jemallocator = { version = "0.3", optional = true } -libqueued = { version = "0.12.0", path = "../libqueued" } +libqueued = { version = "0.13.0", path = "../libqueued" } rand = "0.8.5" rmp-serde = "1.1.2" serde = { version = "1.0", features = ["derive"] } diff --git a/stochastic-stresser/Cargo.toml b/stochastic-stresser/Cargo.toml index c293584..869ac17 100644 --- a/stochastic-stresser/Cargo.toml +++ b/stochastic-stresser/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "queued-stochastic-stresser" publish = false -version = "0.1.0" +version = "0.2.0" edition = "2021" [dependencies] bytesize = { version = "1.2.0", features = ["serde"] } dashmap = "5.4.0" itertools = "0.11.0" -libqueued = { version = "0.12.0", path = "../libqueued" } +libqueued = { version = "0.13.0", path = "../libqueued" } off64 = "0.6.0" rand = "0.8.5" serde = { version = "1.0.164", features = ["derive"] }