Skip to content

Commit 5eef112

Browse files
committed
anno: bump to 0.3.8
1 parent 2bad3fa commit 5eef112

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717
resolver = "2"
1818

1919
[workspace.package]
20-
version = "0.3.7"
20+
version = "0.3.8"
2121
edition = "2024"
2222
rust-version = "1.85"
2323
license = "MIT OR Apache-2.0"
@@ -135,7 +135,7 @@ include = [
135135
doc = false
136136

137137
[dependencies]
138-
anno-lib = { path = "crates/anno", package = "anno-lib", version = "0.3.7", default-features = false }
138+
anno-lib = { path = "crates/anno", package = "anno-lib", version = "0.3.8", default-features = false }
139139
serde_json = { workspace = true }
140140

141141
[features]

crates/anno-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ description = "CLI for anno"
88
publish = false
99

1010
[dependencies]
11-
anno = { path = "../anno", package = "anno-lib", version = "0.3.7", default-features = false }
11+
anno = { path = "../anno", package = "anno-lib", version = "0.3.8", default-features = false }
1212
anno-eval = { path = "../anno-eval", version = "0.3.0" }
13-
anno-core = { path = "../anno-core", version = "0.3.7" }
13+
anno-core = { path = "../anno-core", version = "0.3.8" }
1414

1515
clap = { workspace = true, features = ["derive", "env", "wrap_help"] }
1616
clap_complete = { workspace = true }

crates/anno-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anno-core"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/arclabs561/anno"

crates/anno-eval/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ path = "examples/cdcr_eval.rs"
3535
required-features = ["eval"]
3636

3737
[dependencies]
38-
anno = { path = "../anno", package = "anno-lib", version = "0.3.7", default-features = false, features = ["analysis"] }
39-
anno-core = { path = "../anno-core", version = "0.3.7" }
40-
anno-metrics = { path = "../anno-metrics", version = "0.3.7" }
38+
anno = { path = "../anno", package = "anno-lib", version = "0.3.8", default-features = false, features = ["analysis"] }
39+
anno-core = { path = "../anno-core", version = "0.3.8" }
40+
anno-metrics = { path = "../anno-metrics", version = "0.3.8" }
4141

4242
serde = { workspace = true, features = ["derive"] }
4343
serde_json = { workspace = true }

crates/anno-graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Graph/KG export adapters for anno: converts extraction output to
88
publish = false
99

1010
[dependencies]
11-
anno-core = { path = "../anno-core", version = "0.3.7" }
11+
anno-core = { path = "../anno-core", version = "0.3.8" }
1212
# crates.io `lattix` currently requires its default feature set enabled.
1313
lattix = { version = "0.5.1" }
1414
serde_json.workspace = true

crates/anno-metrics/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anno-metrics"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/arclabs561/anno"
@@ -10,7 +10,7 @@ categories = ["text-processing", "science"]
1010
publish = true
1111

1212
[dependencies]
13-
anno-core = { path = "../anno-core", version = "0.3.7" }
13+
anno-core = { path = "../anno-core", version = "0.3.8" }
1414
serde = { workspace = true, features = ["derive"] }
1515

1616
[dev-dependencies]

crates/anno/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anno-lib"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
edition = "2021"
55
description = "Information extraction: NER, coreference resolution, entity linking, zero-shot entity types"
66
license = "MIT OR Apache-2.0"
@@ -24,8 +24,8 @@ include = [
2424
name = "anno"
2525

2626
[dependencies]
27-
anno-core = { path = "../anno-core", version = "0.3.7" }
28-
anno-metrics = { path = "../anno-metrics", version = "0.3.7", optional = true }
27+
anno-core = { path = "../anno-core", version = "0.3.8" }
28+
anno-metrics = { path = "../anno-metrics", version = "0.3.8", optional = true }
2929
textprep = { workspace = true }
3030
graphops = { workspace = true }
3131
innr = { workspace = true }

0 commit comments

Comments
 (0)