Skip to content

Commit 0dfdc1e

Browse files
committed
Fix changelog and prepare version in Cargo.toml
1 parent 880bd8b commit 0dfdc1e

6 files changed

Lines changed: 44 additions & 35 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased]
77

8+
### Fixed
9+
10+
- Fixed out of bounds error parsing legacy meta queries with multiple
11+
alternatives (https://github.com/korpling/graphANNIS/pull/308)
12+
13+
## [3.5.0] - 2024-09-02
14+
815
### Added
916

1017
- New method `remove_item()` for annotation storages that allows for more
1118
efficient removal if not only a single annotation, but the whole item should
1219
be deleted. This is used in when applying a `DeleteNode` or `DeleteEdge`
1320
event.
1421

15-
### Fixed
16-
17-
- Fixed out of bounds error parsing legacy meta queries with multiple
18-
alternatives (https://github.com/korpling/graphANNIS/pull/308)
1922

2023
## [3.4.0] - 2024-08-20
2124

capi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ license = "Apache-2.0"
66
name = "graphannis-capi"
77
readme = "crate-info.md"
88
repository = "https://github.com/korpling/graphANNIS"
9-
version = "3.4.0"
9+
version = "3.5.0"
1010

1111
[lib]
1212
crate-type = ["staticlib", "cdylib"]
1313

1414
[dependencies]
15-
graphannis = {path = "../graphannis/", version = "^3"}
15+
graphannis = { path = "../graphannis/", version = "^3" }
1616
itertools = "0.10"
1717
libc = "0.2"
1818
log = "0.4"
19-
simplelog = {version = "0.12"}
19+
simplelog = { version = "0.12" }

cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ license = "Apache-2.0"
77
name = "graphannis-cli"
88
readme = "crate-info.md"
99
repository = "https://github.com/korpling/graphANNIS"
10-
version = "3.4.0"
10+
version = "3.5.0"
1111

1212
[dependencies]
1313
anyhow = "1"
14-
clap = {version = "2", default-features = false}
14+
clap = { version = "2", default-features = false }
1515
compound_duration = "1"
1616
criterion = "0.3"
17-
graphannis = {path = "../graphannis/", version = "^3"}
17+
graphannis = { path = "../graphannis/", version = "^3" }
1818
log = "0.4"
1919
prettytable-rs = "0.10.0"
2020
rustyline = "9"
@@ -27,7 +27,7 @@ tikv-jemallocator = "0.5"
2727

2828
[dev-dependencies]
2929
assert_cmd = "2.0.12"
30-
insta = {version = "1.34.0", features = ["filters"]}
30+
insta = { version = "1.34.0", features = ["filters"] }
3131
insta-cmd = "0.5"
3232
serial_test = "2"
3333

core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "Apache-2.0"
66
name = "graphannis-core"
77
readme = "crate-info.md"
88
repository = "https://github.com/korpling/graphANNIS"
9-
version = "3.4.0"
9+
version = "3.5.0"
1010

1111
[lib]
1212

@@ -23,16 +23,16 @@ normpath = "1.1.1"
2323
num-traits = "0.2"
2424
percent-encoding = "2.1"
2525
quick-xml = "0.28"
26-
rand = {version = "0.8", features = ["small_rng"]}
27-
rayon = {version = "1.3", default-features = false}
26+
rand = { version = "0.8", features = ["small_rng"] }
27+
rayon = { version = "1.3", default-features = false }
2828
regex = "1"
2929
regex-syntax = "0.8"
3030
rustc-hash = "1.0"
31-
serde = {version = "1.0", features = ["rc"]}
31+
serde = { version = "1.0", features = ["rc"] }
3232
serde_bytes = "0.11"
3333
serde_derive = "1.0"
3434
smallvec = "1.6"
35-
smartstring = {version = "1", features = ["serde"]}
35+
smartstring = { version = "1", features = ["serde"] }
3636
sstable = "0.11"
3737
strum = "0.21"
3838
strum_macros = "0.21"
@@ -41,7 +41,7 @@ thiserror = "1"
4141
transient-btree-index = "0.5"
4242

4343
[target.'cfg(windows)'.dependencies]
44-
winapi = {version = "0.3", features = ["heapapi"]}
44+
winapi = { version = "0.3", features = ["heapapi"] }
4545

4646
[dev-dependencies]
4747
env_logger = "0.9"

graphannis/Cargo.toml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,27 @@ license = "Apache-2.0"
77
name = "graphannis"
88
readme = "../README.md"
99
repository = "https://github.com/korpling/graphANNIS"
10-
version = "3.4.0"
10+
version = "3.5.0"
1111

1212
[lib]
1313
crate-type = ["lib"]
1414

1515
[build-dependencies]
1616
csv = "1.1"
1717
file_diff = "1"
18-
lalrpop = {version = "0.20", default-features = false, features = ["lexer", "unicode"]}
18+
lalrpop = { version = "0.20", default-features = false, features = [
19+
"lexer",
20+
"unicode",
21+
] }
1922
regex = "1"
2023

2124
[dependencies]
2225
boolean_expression = "0.4"
2326
csv = "1"
2427
fs2 = "0.4"
25-
graphannis-core = {path = "../core/", version = "^3"}
28+
graphannis-core = { path = "../core/", version = "^3" }
2629
itertools = "0.10"
27-
lalrpop-util = {version = "0.20", features = ["lexer"]}
30+
lalrpop-util = { version = "0.20", features = ["lexer"] }
2831
lazy_static = "1.4"
2932
libc = "0.2"
3033
linked-hash-map = "0.5"
@@ -33,15 +36,15 @@ lru = "0.7"
3336
memory-stats = "1.1.0"
3437
page_size = "0.4"
3538
percent-encoding = "2.1"
36-
rand = {version = "0.8", features = ["small_rng"]}
37-
rayon = {version = "1.3", default-features = false}
39+
rand = { version = "0.8", features = ["small_rng"] }
40+
rayon = { version = "1.3", default-features = false }
3841
regex = "1"
3942
regex-syntax = "0.8"
4043
rustc-hash = "1.0"
41-
serde = {version = "1.0", features = ["rc"]}
44+
serde = { version = "1.0", features = ["rc"] }
4245
serde_derive = "1.0"
4346
smallvec = "1.6"
44-
smartstring = {version = "1", features = ["serde"]}
47+
smartstring = { version = "1", features = ["serde"] }
4548
strum = "0.21"
4649
strum_macros = "0.21"
4750
sys-info = "0.9"

webservice/Cargo.toml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,35 @@ license = "Apache-2.0"
66
name = "graphannis-webservice"
77
readme = "crate-info.md"
88
repository = "https://github.com/korpling/graphANNIS"
9-
version = "3.4.0"
9+
version = "3.5.0"
1010

1111
[dependencies]
1212
actix-cors = "0.6"
1313
actix-files = "0.6"
1414
actix-web = "4"
1515
anyhow = "1"
1616
bcrypt = "0.10"
17-
clap = {version = "2", default-features = false}
18-
config = {version = "0.13", default-features = false, features = ["toml"]}
19-
diesel = {version = "2.0.4", default-features = false, features = ["sqlite", "r2d2"]}
20-
diesel_migrations = {version = " 2", default-features = false}
17+
clap = { version = "2", default-features = false }
18+
config = { version = "0.13", default-features = false, features = ["toml"] }
19+
diesel = { version = "2.0.4", default-features = false, features = [
20+
"sqlite",
21+
"r2d2",
22+
] }
23+
diesel_migrations = { version = " 2", default-features = false }
2124
futures = "0.3"
22-
graphannis = {path = "../graphannis/", version = "^3"}
23-
graphannis-core = {path = "../core/", version = "^3"}
25+
graphannis = { path = "../graphannis/", version = "^3" }
26+
graphannis-core = { path = "../core/", version = "^3" }
2427
jsonwebtoken = "7.2"
25-
libsqlite3-sys = {version = "0.26.0", features = ["bundled"]}
28+
libsqlite3-sys = { version = "0.26.0", features = ["bundled"] }
2629
log = "0.4"
2730
percent-encoding = "2.1"
2831
r2d2 = "0.8"
29-
serde = {version = "1.0", features = ["rc"]}
32+
serde = { version = "1.0", features = ["rc"] }
3033
serde_derive = "1.0"
3134
simplelog = "0.12"
3235
tempfile = "3"
3336
thiserror = "1"
34-
uuid = {version = "0.8", features = ["v4"]}
37+
uuid = { version = "0.8", features = ["v4"] }
3538
walkdir = "2"
3639
zip = "0.6.4"
3740

0 commit comments

Comments
 (0)