Skip to content

Commit

Permalink
Fix changelog and prepare version in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskrause committed Sep 25, 2024
1 parent 880bd8b commit 0dfdc1e
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 35 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

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

## [3.5.0] - 2024-09-02

### Added

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

### Fixed

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

## [3.4.0] - 2024-08-20

Expand Down
6 changes: 3 additions & 3 deletions capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ license = "Apache-2.0"
name = "graphannis-capi"
readme = "crate-info.md"
repository = "https://github.com/korpling/graphANNIS"
version = "3.4.0"
version = "3.5.0"

[lib]
crate-type = ["staticlib", "cdylib"]

[dependencies]
graphannis = {path = "../graphannis/", version = "^3"}
graphannis = { path = "../graphannis/", version = "^3" }
itertools = "0.10"
libc = "0.2"
log = "0.4"
simplelog = {version = "0.12"}
simplelog = { version = "0.12" }
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ license = "Apache-2.0"
name = "graphannis-cli"
readme = "crate-info.md"
repository = "https://github.com/korpling/graphANNIS"
version = "3.4.0"
version = "3.5.0"

[dependencies]
anyhow = "1"
clap = {version = "2", default-features = false}
clap = { version = "2", default-features = false }
compound_duration = "1"
criterion = "0.3"
graphannis = {path = "../graphannis/", version = "^3"}
graphannis = { path = "../graphannis/", version = "^3" }
log = "0.4"
prettytable-rs = "0.10.0"
rustyline = "9"
Expand All @@ -27,7 +27,7 @@ tikv-jemallocator = "0.5"

[dev-dependencies]
assert_cmd = "2.0.12"
insta = {version = "1.34.0", features = ["filters"]}
insta = { version = "1.34.0", features = ["filters"] }
insta-cmd = "0.5"
serial_test = "2"

Expand Down
12 changes: 6 additions & 6 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "graphannis-core"
readme = "crate-info.md"
repository = "https://github.com/korpling/graphANNIS"
version = "3.4.0"
version = "3.5.0"

[lib]

Expand All @@ -23,16 +23,16 @@ normpath = "1.1.1"
num-traits = "0.2"
percent-encoding = "2.1"
quick-xml = "0.28"
rand = {version = "0.8", features = ["small_rng"]}
rayon = {version = "1.3", default-features = false}
rand = { version = "0.8", features = ["small_rng"] }
rayon = { version = "1.3", default-features = false }
regex = "1"
regex-syntax = "0.8"
rustc-hash = "1.0"
serde = {version = "1.0", features = ["rc"]}
serde = { version = "1.0", features = ["rc"] }
serde_bytes = "0.11"
serde_derive = "1.0"
smallvec = "1.6"
smartstring = {version = "1", features = ["serde"]}
smartstring = { version = "1", features = ["serde"] }
sstable = "0.11"
strum = "0.21"
strum_macros = "0.21"
Expand All @@ -41,7 +41,7 @@ thiserror = "1"
transient-btree-index = "0.5"

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

[dev-dependencies]
env_logger = "0.9"
Expand Down
19 changes: 11 additions & 8 deletions graphannis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,27 @@ license = "Apache-2.0"
name = "graphannis"
readme = "../README.md"
repository = "https://github.com/korpling/graphANNIS"
version = "3.4.0"
version = "3.5.0"

[lib]
crate-type = ["lib"]

[build-dependencies]
csv = "1.1"
file_diff = "1"
lalrpop = {version = "0.20", default-features = false, features = ["lexer", "unicode"]}
lalrpop = { version = "0.20", default-features = false, features = [
"lexer",
"unicode",
] }
regex = "1"

[dependencies]
boolean_expression = "0.4"
csv = "1"
fs2 = "0.4"
graphannis-core = {path = "../core/", version = "^3"}
graphannis-core = { path = "../core/", version = "^3" }
itertools = "0.10"
lalrpop-util = {version = "0.20", features = ["lexer"]}
lalrpop-util = { version = "0.20", features = ["lexer"] }
lazy_static = "1.4"
libc = "0.2"
linked-hash-map = "0.5"
Expand All @@ -33,15 +36,15 @@ lru = "0.7"
memory-stats = "1.1.0"
page_size = "0.4"
percent-encoding = "2.1"
rand = {version = "0.8", features = ["small_rng"]}
rayon = {version = "1.3", default-features = false}
rand = { version = "0.8", features = ["small_rng"] }
rayon = { version = "1.3", default-features = false }
regex = "1"
regex-syntax = "0.8"
rustc-hash = "1.0"
serde = {version = "1.0", features = ["rc"]}
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1.0"
smallvec = "1.6"
smartstring = {version = "1", features = ["serde"]}
smartstring = { version = "1", features = ["serde"] }
strum = "0.21"
strum_macros = "0.21"
sys-info = "0.9"
Expand Down
23 changes: 13 additions & 10 deletions webservice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,35 @@ license = "Apache-2.0"
name = "graphannis-webservice"
readme = "crate-info.md"
repository = "https://github.com/korpling/graphANNIS"
version = "3.4.0"
version = "3.5.0"

[dependencies]
actix-cors = "0.6"
actix-files = "0.6"
actix-web = "4"
anyhow = "1"
bcrypt = "0.10"
clap = {version = "2", default-features = false}
config = {version = "0.13", default-features = false, features = ["toml"]}
diesel = {version = "2.0.4", default-features = false, features = ["sqlite", "r2d2"]}
diesel_migrations = {version = " 2", default-features = false}
clap = { version = "2", default-features = false }
config = { version = "0.13", default-features = false, features = ["toml"] }
diesel = { version = "2.0.4", default-features = false, features = [
"sqlite",
"r2d2",
] }
diesel_migrations = { version = " 2", default-features = false }
futures = "0.3"
graphannis = {path = "../graphannis/", version = "^3"}
graphannis-core = {path = "../core/", version = "^3"}
graphannis = { path = "../graphannis/", version = "^3" }
graphannis-core = { path = "../core/", version = "^3" }
jsonwebtoken = "7.2"
libsqlite3-sys = {version = "0.26.0", features = ["bundled"]}
libsqlite3-sys = { version = "0.26.0", features = ["bundled"] }
log = "0.4"
percent-encoding = "2.1"
r2d2 = "0.8"
serde = {version = "1.0", features = ["rc"]}
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1.0"
simplelog = "0.12"
tempfile = "3"
thiserror = "1"
uuid = {version = "0.8", features = ["v4"]}
uuid = { version = "0.8", features = ["v4"] }
walkdir = "2"
zip = "0.6.4"

Expand Down

0 comments on commit 0dfdc1e

Please sign in to comment.