Skip to content

Commit 49448b3

Browse files
authored
chore: Release (#2168)
* chore: Release * update CHANGELOG
1 parent ebede0b commit 49448b3

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Tantivy 0.21 [unreleased]
1+
Tantivy 0.21
22
================================
33
#### Bugfixes
44
- Fix track fast field memory consumption, which led to higher memory consumption than the budget allowed during indexing [#2148](https://github.com/quickwit-oss/tantivy/issues/2148)[#2147](https://github.com/quickwit-oss/tantivy/issues/2147)(@PSeitz)

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy"
3-
version = "0.20.2"
3+
version = "0.21.0"
44
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
55
license = "MIT"
66
categories = ["database-implementations", "data-structures"]
@@ -54,13 +54,13 @@ measure_time = "0.8.2"
5454
async-trait = "0.1.53"
5555
arc-swap = "1.5.0"
5656

57-
columnar = { version= "0.1", path="./columnar", package ="tantivy-columnar" }
58-
sstable = { version= "0.1", path="./sstable", package ="tantivy-sstable", optional = true }
59-
stacker = { version= "0.1", path="./stacker", package ="tantivy-stacker" }
60-
query-grammar = { version= "0.20.0", path="./query-grammar", package = "tantivy-query-grammar" }
61-
tantivy-bitpacker = { version= "0.4", path="./bitpacker" }
62-
common = { version= "0.5", path = "./common/", package = "tantivy-common" }
63-
tokenizer-api = { version= "0.1", path="./tokenizer-api", package="tantivy-tokenizer-api" }
57+
columnar = { version= "0.2", path="./columnar", package ="tantivy-columnar" }
58+
sstable = { version= "0.2", path="./sstable", package ="tantivy-sstable", optional = true }
59+
stacker = { version= "0.2", path="./stacker", package ="tantivy-stacker" }
60+
query-grammar = { version= "0.21.0", path="./query-grammar", package = "tantivy-query-grammar" }
61+
tantivy-bitpacker = { version= "0.5", path="./bitpacker" }
62+
common = { version= "0.6", path = "./common/", package = "tantivy-common" }
63+
tokenizer-api = { version= "0.2", path="./tokenizer-api", package="tantivy-tokenizer-api" }
6464
sketches-ddsketch = { version = "0.2.1", features = ["use_serde"] }
6565
futures-util = { version = "0.3.28", optional = true }
6666

bitpacker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-bitpacker"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
66
license = "MIT"

columnar/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-columnar"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "MIT"
66
homepage = "https://github.com/quickwit-oss/tantivy"
@@ -13,10 +13,10 @@ itertools = "0.11.0"
1313
fnv = "1.0.7"
1414
fastdivide = "0.4.0"
1515

16-
stacker = { version= "0.1", path = "../stacker", package="tantivy-stacker"}
17-
sstable = { version= "0.1", path = "../sstable", package = "tantivy-sstable" }
18-
common = { version= "0.5", path = "../common", package = "tantivy-common" }
19-
tantivy-bitpacker = { version= "0.4", path = "../bitpacker/" }
16+
stacker = { version= "0.2", path = "../stacker", package="tantivy-stacker"}
17+
sstable = { version= "0.2", path = "../sstable", package = "tantivy-sstable" }
18+
common = { version= "0.6", path = "../common", package = "tantivy-common" }
19+
tantivy-bitpacker = { version= "0.5", path = "../bitpacker/" }
2020
serde = "1.0.152"
2121

2222
[dev-dependencies]

common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-common"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Paul Masurel <paul@quickwit.io>", "Pascal Seitz <pascal@quickwit.io>"]
55
license = "MIT"
66
edition = "2021"
@@ -14,7 +14,7 @@ repository = "https://github.com/quickwit-oss/tantivy"
1414

1515
[dependencies]
1616
byteorder = "1.4.3"
17-
ownedbytes = { version= "0.5", path="../ownedbytes" }
17+
ownedbytes = { version= "0.6", path="../ownedbytes" }
1818
async-trait = "0.1"
1919
time = { version = "0.3.10", features = ["serde-well-known"] }
2020
serde = { version = "1.0.136", features = ["derive"] }

ownedbytes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Paul Masurel <paul@quickwit.io>", "Pascal Seitz <pascal@quickwit.io>"]
33
name = "ownedbytes"
4-
version = "0.5.0"
4+
version = "0.6.0"
55
edition = "2021"
66
description = "Expose data as static slice"
77
license = "MIT"

query-grammar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-query-grammar"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
55
license = "MIT"
66
categories = ["database-implementations", "data-structures"]

sstable/Cargo.toml

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

1212
[dependencies]
13-
common = {version= "0.5", path="../common", package="tantivy-common"}
13+
common = {version= "0.6", path="../common", package="tantivy-common"}
1414
tantivy-fst = "0.4"
1515
# experimental gives us access to Decompressor::upper_bound
1616
zstd = { version = "0.12", features = ["experimental"] }

stacker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-stacker"
3-
version = "0.1.0"
3+
version = "0.2.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.5", path = "../common/", package = "tantivy-common" }
12+
common = { version = "0.6", path = "../common/", package = "tantivy-common" }
1313
ahash = { version = "0.8.3", default-features = false, optional = true }
1414

1515
[[bench]]

tokenizer-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy-tokenizer-api"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
license = "MIT"
55
edition = "2021"
66
description = "Tokenizer API of tantivy"

0 commit comments

Comments
 (0)