Skip to content

Commit 43e5214

Browse files
committed
chore: Release
1 parent 334e568 commit 43e5214

9 files changed

Lines changed: 28 additions & 28 deletions

File tree

Cargo.lock

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

generic_a_star/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "generic_a_star"
33
description = "A generic implementation of the A* algorithm"
4-
version = "2.0.5"
4+
version = "2.1.0"
55
edition.workspace = true
66
rust-version.workspace = true
77
license.workspace = true

lib_ts_chainalign/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "lib_ts_chainalign"
33
description = "A chaining-based sequence-to-sequence aligner that accounts for template switches"
44
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
5-
version = "2.0.5"
5+
version = "2.1.0"
66
license.workspace = true
77
edition.workspace = true
88
rust-version.workspace = true
99
repository.workspace = true
1010

1111
[dependencies]
12-
generic_a_star = { version = "2.0.5", path = "../generic_a_star" }
13-
lib_tsalign = { version = "2.0.5", path = "../lib_tsalign" }
12+
generic_a_star = { version = "2.1.0", path = "../generic_a_star" }
13+
lib_tsalign = { version = "2.1.0", path = "../lib_tsalign" }
1414
ndarray = { version = "0.17.1", features = ["serde"] }
1515
num-traits.workspace = true
1616
serde = { workspace = true, features = ["derive"] }

lib_tsalign/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lib_tsalign"
33
description = "A sequence-to-sequence aligner that accounts for template switches"
44
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
5-
version = "2.0.5"
5+
version = "2.1.0"
66
license.workspace = true
77
edition.workspace = true
88
rust-version.workspace = true
@@ -26,9 +26,9 @@ thiserror = "2.0.3"
2626
num-traits.workspace = true
2727
serde = { workspace = true, features = ["derive"], optional = true }
2828
noisy_float = { version = "0.2.0" }
29-
generic_a_star = { version = "2.0.5", path = "../generic_a_star" }
29+
generic_a_star = { version = "2.1.0", path = "../generic_a_star" }
3030
log.workspace = true
3131
rustc-hash = "2.1.1"
32-
seed_chain = { version = "2.0.5", path = "../seed_chain" }
32+
seed_chain = { version = "2.1.0", path = "../seed_chain" }
3333
extend_map = "0.14.3"
3434
template-switch-error-free-inners = "0.1.1"

lib_tsshow/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name = "lib_tsshow"
33
description = "A visualiser for template-switch alignments"
44
license.workspace = true
55
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
6-
version = "2.0.5"
6+
version = "2.1.0"
77
edition.workspace = true
88
rust-version.workspace = true
99
repository.workspace = true
1010

1111
[dependencies]
12-
lib_tsalign = { version = "2.0.5", path = "../lib_tsalign" }
12+
lib_tsalign = { version = "2.1.0", path = "../lib_tsalign" }
1313
log.workspace = true
1414
svg = "0.18.0"
1515
resvg = "0.45.0"

python_bindings/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Sebastian Schmidt <sebastian.schmidt@helsinki.fi>",
77
"Jasper Krauter <jasper.krauter@helsinki.fi>",
88
]
9-
version = "2.0.5"
9+
version = "2.1.0"
1010
edition.workspace = true
1111
rust-version.workspace = true
1212
repository.workspace = true
@@ -18,10 +18,10 @@ crate-type = ["cdylib"]
1818

1919
[dependencies]
2020
pyo3 = "0.26"
21-
lib_tsalign = { version = "2.0.5", path = "../lib_tsalign", features = [
21+
lib_tsalign = { version = "2.1.0", path = "../lib_tsalign", features = [
2222
"serde",
2323
] }
24-
lib_tsshow = { version = "2.0.5", path = "../lib_tsshow" }
24+
lib_tsshow = { version = "2.1.0", path = "../lib_tsshow" }
2525
serde.workspace = true
2626
pythonize = "0.26"
2727
pyo3-log = "0.13"

seed_chain/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "seed_chain"
33
description = "A seeding and generic chaining mechanism for sequence-to-sequence alignment"
44
license.workspace = true
55
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
6-
version = "2.0.5"
6+
version = "2.1.0"
77
edition.workspace = true
88
rust-version.workspace = true
99
repository.workspace = true
@@ -12,5 +12,5 @@ repository.workspace = true
1212
[dependencies]
1313
compact-genome.workspace = true
1414
log.workspace = true
15-
generic_a_star = { version = "2.0.5", path = "../generic_a_star" }
15+
generic_a_star = { version = "2.1.0", path = "../generic_a_star" }
1616
num-traits.workspace = true

tsalign-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "tsalign-tests"
33
license.workspace = true
44
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>", "Jasper Krauter <jasper.krauter@helsinki.fi>"]
5-
version = "2.0.5"
5+
version = "2.1.0"
66
edition.workspace = true
77
rust-version.workspace = true
88
repository.workspace = true

tsalign/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ name = "tsalign"
33
description = "A sequence-to-sequence aligner that accounts for template switches"
44
license.workspace = true
55
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
6-
version = "2.0.5"
6+
version = "2.1.0"
77
edition.workspace = true
88
rust-version.workspace = true
99
repository.workspace = true
1010

1111
[dependencies]
12-
generic_a_star = { version = "2.0.5", path = "../generic_a_star" }
13-
lib_tsalign = { version = "2.0.5", path = "../lib_tsalign", features = [
12+
generic_a_star = { version = "2.1.0", path = "../generic_a_star" }
13+
lib_tsalign = { version = "2.1.0", path = "../lib_tsalign", features = [
1414
"serde",
1515
] }
16-
lib_ts_chainalign = { version = "2.0.5", path = "../lib_ts_chainalign" }
17-
lib_tsshow = { version = "2.0.5", path = "../lib_tsshow" }
16+
lib_ts_chainalign = { version = "2.1.0", path = "../lib_ts_chainalign" }
17+
lib_tsshow = { version = "2.1.0", path = "../lib_tsshow" }
1818
clap.workspace = true
1919
compact-genome = { workspace = true, features = ["io"] }
2020
traitsequence.workspace = true

0 commit comments

Comments
 (0)