Skip to content

Commit c6e77d2

Browse files
committed
chore: Release
1 parent db6587e commit c6e77d2

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
authors = ["Paul Masurel <[email protected]>"]
55
license = "MIT"
66
categories = ["database-implementations", "data-structures"]
@@ -57,13 +57,13 @@ measure_time = "0.9.0"
5757
arc-swap = "1.5.0"
5858
bon = "3.3.1"
5959

60-
columnar = { version = "0.4", path = "./columnar", package = "tantivy-columnar" }
61-
sstable = { version = "0.4", path = "./sstable", package = "tantivy-sstable", optional = true }
62-
stacker = { version = "0.4", path = "./stacker", package = "tantivy-stacker" }
63-
query-grammar = { version = "0.23.0", path = "./query-grammar", package = "tantivy-query-grammar" }
64-
tantivy-bitpacker = { version = "0.7", path = "./bitpacker" }
65-
common = { version = "0.8", path = "./common/", package = "tantivy-common" }
66-
tokenizer-api = { version = "0.4", path = "./tokenizer-api", package = "tantivy-tokenizer-api" }
60+
columnar = { version = "0.5", path = "./columnar", package = "tantivy-columnar" }
61+
sstable = { version = "0.5", path = "./sstable", package = "tantivy-sstable", optional = true }
62+
stacker = { version = "0.5", path = "./stacker", package = "tantivy-stacker" }
63+
query-grammar = { version = "0.24.0", path = "./query-grammar", package = "tantivy-query-grammar" }
64+
tantivy-bitpacker = { version = "0.8", path = "./bitpacker" }
65+
common = { version = "0.9", path = "./common/", package = "tantivy-common" }
66+
tokenizer-api = { version = "0.5", path = "./tokenizer-api", package = "tantivy-tokenizer-api" }
6767
sketches-ddsketch = { version = "0.3.0", features = ["use_serde"] }
6868
hyperloglogplus = { version = "0.4.1", features = ["const-loop"] }
6969
futures-util = { version = "0.3.28", optional = true }

bitpacker/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-bitpacker"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["Paul Masurel <[email protected]>"]
66
license = "MIT"

columnar/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-columnar"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT"
66
homepage = "https://github.com/quickwit-oss/tantivy"
@@ -12,10 +12,10 @@ categories = ["database-implementations", "data-structures", "compression"]
1212
itertools = "0.14.0"
1313
fastdivide = "0.4.0"
1414

15-
stacker = { version= "0.4", path = "../stacker", package="tantivy-stacker"}
16-
sstable = { version= "0.4", path = "../sstable", package = "tantivy-sstable" }
17-
common = { version= "0.8", path = "../common", package = "tantivy-common" }
18-
tantivy-bitpacker = { version= "0.7", path = "../bitpacker/" }
15+
stacker = { version= "0.5", path = "../stacker", package="tantivy-stacker"}
16+
sstable = { version= "0.5", path = "../sstable", package = "tantivy-sstable" }
17+
common = { version= "0.9", path = "../common", package = "tantivy-common" }
18+
tantivy-bitpacker = { version= "0.8", path = "../bitpacker/" }
1919
serde = "1.0.152"
2020
downcast-rs = "2.0.1"
2121

common/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-common"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Paul Masurel <[email protected]>", "Pascal Seitz <[email protected]>"]
55
license = "MIT"
66
edition = "2021"
@@ -13,7 +13,7 @@ repository = "https://github.com/quickwit-oss/tantivy"
1313

1414
[dependencies]
1515
byteorder = "1.4.3"
16-
ownedbytes = { version= "0.8", path="../ownedbytes" }
16+
ownedbytes = { version= "0.9", path="../ownedbytes" }
1717
async-trait = "0.1"
1818
time = { version = "0.3.10", features = ["serde-well-known"] }
1919
serde = { version = "1.0.136", features = ["derive"] }

ownedbytes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Paul Masurel <[email protected]>", "Pascal Seitz <[email protected]>"]
33
name = "ownedbytes"
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition = "2021"
66
description = "Expose data as static slice"
77
license = "MIT"

query-grammar/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-query-grammar"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
authors = ["Paul Masurel <[email protected]>"]
55
license = "MIT"
66
categories = ["database-implementations", "data-structures"]

sstable/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-sstable"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT"
66
homepage = "https://github.com/quickwit-oss/tantivy"
@@ -10,10 +10,10 @@ categories = ["database-implementations", "data-structures", "compression"]
1010
description = "sstables for tantivy"
1111

1212
[dependencies]
13-
common = {version= "0.8", path="../common", package="tantivy-common"}
13+
common = {version= "0.9", path="../common", package="tantivy-common"}
1414
futures-util = "0.3.30"
1515
itertools = "0.14.0"
16-
tantivy-bitpacker = { version= "0.7", path="../bitpacker" }
16+
tantivy-bitpacker = { version= "0.8", path="../bitpacker" }
1717
tantivy-fst = "0.5"
1818
# experimental gives us access to Decompressor::upper_bound
1919
zstd = { version = "0.13", features = ["experimental"] }

stacker/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-stacker"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT"
66
homepage = "https://github.com/quickwit-oss/tantivy"
@@ -9,7 +9,7 @@ description = "term hashmap used for indexing"
99

1010
[dependencies]
1111
murmurhash32 = "0.3"
12-
common = { version = "0.8", path = "../common/", package = "tantivy-common" }
12+
common = { version = "0.9", path = "../common/", package = "tantivy-common" }
1313
ahash = { version = "0.8.11", default-features = false, optional = true }
1414
rand_distr = "0.4.3"
1515

tokenizer-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-tokenizer-api"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
license = "MIT"
55
edition = "2021"
66
description = "Tokenizer API of tantivy"

0 commit comments

Comments
 (0)