Skip to content

Commit c339b05

Browse files
committed
Bumped version and edited changelog
1 parent 2d3c657 commit c339b05

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Tantivy 0.13.1
2+
======================
3+
Made `Query` and `Collector` `Send + Sync`.
4+
Updated misc dependency versions.
5+
6+
17
Tantivy 0.13.0
28
======================
39
Tantivy 0.13 introduce a change in the index format that will require

Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tantivy"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
55
license = "MIT"
66
categories = ["database-implementations", "data-structures"]
@@ -13,42 +13,42 @@ keywords = ["search", "information", "retrieval"]
1313
edition = "2018"
1414

1515
[dependencies]
16-
base64 = "0.12.0"
17-
byteorder = "1.0"
18-
crc32fast = "1.2.0"
19-
once_cell = "1.0"
20-
regex ={version = "1.3.0", default-features = false, features = ["std"]}
16+
base64 = "0.12"
17+
byteorder = "1"
18+
crc32fast = "1"
19+
once_cell = "1"
20+
regex ={version = "1", default-features = false, features = ["std"]}
2121
tantivy-fst = "0.3"
2222
memmap = {version = "0.7", optional=true}
23-
lz4 = {version="1.20", optional=true}
23+
lz4 = {version="1", optional=true}
2424
snap = "1"
25-
atomicwrites = {version="0.2.2", optional=true}
26-
tempfile = "3.0"
25+
atomicwrites = {version="0.2", optional=true}
26+
tempfile = "3"
2727
log = "0.4"
28-
serde = {version="1.0", features=["derive"]}
29-
serde_json = "1.0"
30-
num_cpus = "1.2"
28+
serde = {version="1", features=["derive"]}
29+
serde_json = "1"
30+
num_cpus = "1"
3131
fs2={version="0.4", optional=true}
3232
levenshtein_automata = "0.2"
3333
notify = {version="4", optional=true}
3434
uuid = { version = "0.8", features = ["v4", "serde"] }
3535
crossbeam = "0.7"
3636
futures = {version = "0.3", features=["thread-pool"] }
3737
owning_ref = "0.4"
38-
stable_deref_trait = "1.0.0"
39-
rust-stemmers = "1.2"
40-
downcast-rs = { version="1.0" }
38+
stable_deref_trait = "1"
39+
rust-stemmers = "1"
40+
downcast-rs = "1"
4141
tantivy-query-grammar = { version="0.13", path="./query-grammar" }
4242
bitpacking = {version="0.8", default-features = false, features=["bitpacker4x"]}
4343
census = "0.4"
44-
fnv = "1.0.6"
44+
fnv = "1"
4545
owned-read = "0.4"
4646
failure = "0.1"
47-
htmlescape = "0.3.1"
47+
htmlescape = "0.3"
4848
fail = "0.4"
4949
murmurhash32 = "0.2"
5050
chrono = "0.4"
51-
smallvec = "1.0"
51+
smallvec = "1"
5252
rayon = "1"
5353

5454
[target.'cfg(windows)'.dependencies]

0 commit comments

Comments
 (0)