Skip to content

Commit

Permalink
[release] 0.23.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ppodolsky committed Apr 20, 2024
1 parent e2e1e8c commit aeaf59d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion aiosumma/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion summa-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summa-core"
version = "0.23.2"
version = "0.23.3"
authors = ["Pasha Podolsky <ppodolsky@me.com>"]
edition = "2021"
license-file = "LICENSE"
Expand Down
6 changes: 3 additions & 3 deletions summa-embed-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }
2 changes: 1 addition & 1 deletion summa-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summa-proto"
version = "0.36.0"
version = "0.36.1"
authors = ["Pasha Podolsky <ppodolsky@me.com>"]
edition = "2021"
license-file = "LICENSE"
Expand Down
10 changes: 5 additions & 5 deletions summa-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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 }
Expand All @@ -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 }
Expand Down

0 comments on commit aeaf59d

Please sign in to comment.