Skip to content

Commit 72d12db

Browse files
committed
chore: Release
1 parent 4b493d2 commit 72d12db

8 files changed

Lines changed: 15 additions & 13 deletions

File tree

CHANGELOG.md

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

66
## [Unreleased]
77

8+
## [4.0.0] - 2025-08-20
9+
810
### Changed
911

1012
- :boom: Removed usage of the `smartstring` crate. This changes the interface of

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ authors:
66
orcid: https://orcid.org/0000-0003-3731-2422
77
affiliation: Humboldt-Universität zu Berlin
88
title: graphANNIS
9-
version: 3.8.3
10-
date-released: 2025-08-12
9+
version: 4.0.0
10+
date-released: 2025-08-20
1111
doi: 10.5281/zenodo.2598164
1212
references:
1313
- type: thesis

capi/Cargo.toml

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

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

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

cli/Cargo.toml

Lines changed: 2 additions & 2 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.8.3"
10+
version = "4.0.0"
1111

1212
[dependencies]
1313
anyhow = "1"
1414
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 = "^4" }
1818
log = "0.4"
1919
prettytable-rs = "0.10.0"
2020
rustyline = "9"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.8.3"
9+
version = "4.0.0"
1010

1111
[lib]
1212

docs/src/embed-rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Add a dependency to graphANNIS in you `Cargo.toml` file:
66
```toml
7-
graphannis = "3.8.3"
7+
graphannis = "4.0.0"
88
```
99

1010
## API documentation

graphannis/Cargo.toml

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

1212
[lib]
1313
crate-type = ["lib"]
@@ -26,7 +26,7 @@ boolean_expression = "0.4"
2626
csv = "1"
2727
facet = "0.28.0"
2828
fs2 = "0.4"
29-
graphannis-core = { path = "../core/", version = "^3" }
29+
graphannis-core = { path = "../core/", version = "^4" }
3030
itertools = "0.10"
3131
lalrpop-util = { version = "0.20", features = ["lexer"] }
3232
lazy_static = "1.4"

webservice/Cargo.toml

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

1111
[dependencies]
1212
actix-cors = "0.6"
@@ -22,8 +22,8 @@ diesel = { version = "2.0.4", default-features = false, features = [
2222
] }
2323
diesel_migrations = { version = " 2", default-features = false }
2424
futures = "0.3"
25-
graphannis = { path = "../graphannis/", version = "^3" }
26-
graphannis-core = { path = "../core/", version = "^3" }
25+
graphannis = { path = "../graphannis/", version = "^4" }
26+
graphannis-core = { path = "../core/", version = "^4" }
2727
jsonwebtoken = "7.2"
2828
libsqlite3-sys = { version = "0.26.0", features = ["bundled"] }
2929
log = "0.4"

0 commit comments

Comments
 (0)