Skip to content

Commit 509adab

Browse files
authored
Bump version (#1715)
* group workspace deps * update cargo.toml * revert tant version * chore: Release
1 parent 96c93a6 commit 509adab

File tree

6 files changed

+29
-15
lines changed

6 files changed

+29
-15
lines changed

Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy"
3-
version = "0.19.0-dev"
3+
version = "0.19.0"
44
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
55
license = "MIT"
66
categories = ["database-implementations", "data-structures"]
@@ -36,11 +36,6 @@ fs2 = { version = "0.4.3", optional = true }
3636
levenshtein_automata = "0.2.1"
3737
uuid = { version = "1.0.0", features = ["v4", "serde"] }
3838
crossbeam-channel = "0.5.4"
39-
tantivy-query-grammar = { version="0.18.0", path="./query-grammar" }
40-
tantivy-bitpacker = { version="0.2", path="./bitpacker" }
41-
common = { version = "0.3", path = "./common/", package = "tantivy-common" }
42-
fastfield_codecs = { version="0.2", path="./fastfield_codecs", default-features = false }
43-
ownedbytes = { version="0.3", path="./ownedbytes" }
4439
stable_deref_trait = "1.2.0"
4540
rust-stemmers = "1.2.0"
4641
downcast-rs = "1.2.0"
@@ -62,6 +57,12 @@ ciborium = { version = "0.2", optional = true}
6257
async-trait = "0.1.53"
6358
arc-swap = "1.5.0"
6459

60+
tantivy-query-grammar = { version= "0.19.0", path="./query-grammar" }
61+
tantivy-bitpacker = { version= "0.3", path="./bitpacker" }
62+
common = { version= "0.4", path = "./common/", package = "tantivy-common" }
63+
fastfield_codecs = { version= "0.3", path="./fastfield_codecs", default-features = false }
64+
ownedbytes = { version= "0.4", path="./ownedbytes" }
65+
6566
[target.'cfg(windows)'.dependencies]
6667
winapi = "0.3.9"
6768

bitpacker/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[package]
22
name = "tantivy-bitpacker"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
66
license = "MIT"
77
categories = []
88
description = """Tantivy-sub crate: bitpacking"""
99
repository = "https://github.com/quickwit-oss/tantivy"
1010
keywords = []
11+
documentation = "https://docs.rs/tantivy-bitpacker/latest/tantivy_bitpacker"
12+
homepage = "https://github.com/quickwit-oss/tantivy"
1113

1214

1315
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

common/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
[package]
22
name = "tantivy-common"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Paul Masurel <paul@quickwit.io>", "Pascal Seitz <pascal@quickwit.io>"]
55
license = "MIT"
66
edition = "2021"
77
description = "common traits and utility functions used by multiple tantivy subcrates"
8+
documentation = "https://docs.rs/tantivy_common/"
9+
homepage = "https://github.com/quickwit-oss/tantivy"
10+
repository = "https://github.com/quickwit-oss/tantivy"
11+
812

913
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1014

1115
[dependencies]
1216
byteorder = "1.4.3"
13-
ownedbytes = { version="0.3", path="../ownedbytes" }
17+
ownedbytes = { version= "0.4", path="../ownedbytes" }
1418

1519
[dev-dependencies]
1620
proptest = "1.0.0"

fastfield_codecs/Cargo.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
[package]
22
name = "fastfield_codecs"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Pascal Seitz <pascal@quickwit.io>"]
55
license = "MIT"
66
edition = "2021"
77
description = "Fast field codecs used by tantivy"
8+
documentation = "https://docs.rs/fastfield_codecs/"
9+
homepage = "https://github.com/quickwit-oss/tantivy"
10+
repository = "https://github.com/quickwit-oss/tantivy"
811

912
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1013

1114
[dependencies]
12-
common = { version = "0.3", path = "../common/", package = "tantivy-common" }
13-
tantivy-bitpacker = { version="0.2", path = "../bitpacker/" }
14-
ownedbytes = { version = "0.3.0", path = "../ownedbytes" }
15+
common = { version = "0.4", path = "../common/", package = "tantivy-common" }
16+
tantivy-bitpacker = { version= "0.3", path = "../bitpacker/" }
17+
ownedbytes = { version = "0.4.0", path = "../ownedbytes" }
1518
prettytable-rs = {version="0.9.0", optional= true}
1619
rand = {version="0.8.3", optional= true}
1720
fastdivide = "0.4"

ownedbytes/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
[package]
22
authors = ["Paul Masurel <paul@quickwit.io>", "Pascal Seitz <pascal@quickwit.io>"]
33
name = "ownedbytes"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
edition = "2021"
66
description = "Expose data as static slice"
77
license = "MIT"
8+
documentation = "https://docs.rs/ownedbytes/"
9+
homepage = "https://github.com/quickwit-oss/tantivy"
10+
repository = "https://github.com/quickwit-oss/tantivy"
11+
812
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
913

1014
[dependencies]

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.18.0"
3+
version = "0.19.0"
44
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
55
license = "MIT"
66
categories = ["database-implementations", "data-structures"]

0 commit comments

Comments
 (0)