From aeaf59d78b9773fedf6651cef144c183efab0d82 Mon Sep 17 00:00:00 2001 From: Pasha Podolsky Date: Sat, 20 Apr 2024 08:41:44 +0300 Subject: [PATCH] [release] 0.23.4 --- Cargo.toml | 2 +- aiosumma/pyproject.toml | 2 +- summa-core/Cargo.toml | 2 +- summa-embed-py/Cargo.toml | 6 +++--- summa-proto/Cargo.toml | 2 +- summa-server/Cargo.toml | 10 +++++----- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3c09bfb9..859c09d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ serde_cbor = "0.11" serde_json = { version = "1.0" } serde_yaml = { version = "0.8" } strfmt = "0.2" -summa-proto = { version = "0.36.0", path = "./summa-proto", default_features = false } +summa-proto = { version = "0.36.1", path = "./summa-proto", default_features = false } take_mut = "0.2" tantivy = { package = "izihawa-tantivy", version = "0.22.6", default_features = false, features = ["quickwit", "sstable-termdict", "zstd-compression"] } tantivy-common = { package = "izihawa-tantivy-common", version = "0.7" } diff --git a/aiosumma/pyproject.toml b/aiosumma/pyproject.toml index a1b1e67f..1adfcd06 100644 --- a/aiosumma/pyproject.toml +++ b/aiosumma/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "aiosumma" -version = "2.47.4" +version = "2.47.5" authors = [{ name = "Pasha Podolsky", email = "ppodolsky@me.com" }] description = "Async client for Summa Search" readme = "README.md" diff --git a/summa-core/Cargo.toml b/summa-core/Cargo.toml index 5fa1b5c7..5e32536d 100644 --- a/summa-core/Cargo.toml +++ b/summa-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summa-core" -version = "0.23.2" +version = "0.23.3" authors = ["Pasha Podolsky "] edition = "2021" license-file = "LICENSE" diff --git a/summa-embed-py/Cargo.toml b/summa-embed-py/Cargo.toml index 8429c85c..009316ed 100644 --- a/summa-embed-py/Cargo.toml +++ b/summa-embed-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summa-embed-py" -version = "0.23.2" +version = "0.23.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,8 +17,8 @@ pyo3-asyncio = { version = "0.19", features = ["attributes", "tokio-runtime"] } pyo3-log = "0.8" pythonize = "0.19" serde_json = "1.0" -summa-core = { version = "0.23.2", path = "../summa-core", default_features = false, features = ["fs", "hyper-external-request", "tokio-rt"] } -summa-server = { version = "0.23.2", path = "../summa-server", default_features = false } +summa-core = { version = "0.23.3", path = "../summa-core", default_features = false, features = ["fs", "hyper-external-request", "tokio-rt"] } +summa-server = { version = "0.23.4", path = "../summa-server", default_features = false } summa-proto = { workspace = true } tantivy = { workspace = true } tokio = { workspace = true } \ No newline at end of file diff --git a/summa-proto/Cargo.toml b/summa-proto/Cargo.toml index 4825bd4f..c75f7765 100644 --- a/summa-proto/Cargo.toml +++ b/summa-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summa-proto" -version = "0.36.0" +version = "0.36.1" authors = ["Pasha Podolsky "] edition = "2021" license-file = "LICENSE" diff --git a/summa-server/Cargo.toml b/summa-server/Cargo.toml index c7b838bb..21393b1c 100644 --- a/summa-server/Cargo.toml +++ b/summa-server/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "summa-server" -version = "0.23.3" +version = "0.23.4" license-file = "LICENSE" description = "Fast full-text search server" homepage = "https://github.com/izihawa/summa" @@ -38,11 +38,11 @@ anyhow = { workspace = true } async-broadcast = { workspace = true } async-trait = { workspace = true } clap = { workspace = true } -config = "0.13" +config = "0.14.0" derive_builder = { workspace = true } futures = { workspace = true } futures-util = "0.3" -headers = "0.3" +headers = "0.4.0" hyper = { workspace = true } itertools = { workspace = true } libz-sys = { workspace = true } @@ -53,13 +53,13 @@ prometheus = { version = "0.13", optional = true } prost = { workspace = true } prost-types = "0.12" rand = { workspace = true } -rdkafka = { version = "0.34", optional = true } +rdkafka = { version = "0.36.2", optional = true } rlimit = "0.10" serde = { workspace = true } serde_derive = "1.0" serde_json = { workspace = true } serde_yaml = { workspace = true } -summa-core = { version = "0.23.2", path = "../summa-core", features = ["fs", "hyper-external-request", "tokio-rt"] } +summa-core = { version = "0.23.3", path = "../summa-core", features = ["fs", "hyper-external-request", "tokio-rt"] } summa-proto = { workspace = true, features = ["grpc"] } take_mut = { workspace = true } tantivy = { workspace = true }