Skip to content

Commit

Permalink
(cargo-release) version {{version}}
Browse files Browse the repository at this point in the history
  • Loading branch information
sebschmi committed Apr 19, 2021
1 parent 977e057 commit da63c8d
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
14 changes: 7 additions & 7 deletions implementation/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions implementation/bigraph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "bigraph"
description = "Different representations with implemented operations on bigraphs"
categories = ["data-structures", "mathematics", "science"]
keywords = ["bigraph", "graph", "bidirected", "abstract", "implementation"]
version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Sebastian Schmidt <[email protected]>"]
edition = "2018"
homepage = "https://github.com/algbio/practical-omnitigs/tree/master/implementation/bigraph"
Expand All @@ -15,7 +15,7 @@ license = "BSD-2-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
traitgraph = {path = "../traitgraph", version = "^0.3.1-alpha.0"}
traitgraph = {path = "../traitgraph", version = "^0.3.1"}
opaque_typedef = "0.0.5"
opaque_typedef_macros = "0.0.5"
petgraph = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion implementation/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Sebastian Schmidt <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions implementation/compact-genome/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "compact-genome"
description = "Representation of genomes"
categories = ["data-structures", "science"]
keywords = ["genome", "representation", "compact", "string", "bioinformatics"]
version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Sebastian Schmidt <[email protected]>"]
edition = "2018"
homepage = "https://github.com/algbio/practical-omnitigs/tree/master/implementation/compact-genome"
Expand All @@ -15,7 +15,7 @@ license = "BSD-2-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
traitsequence = {path = "../traitsequence", version = "^0.3.1-alpha.0"}
traitsequence = {path = "../traitsequence", version = "^0.3.1"}
itertools = "0.9"
bitvec = "0.22"
ref-cast = "1"
6 changes: 3 additions & 3 deletions implementation/genome-graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "genome-graph"
description = "Representation of genome graphs"
version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Sebastian Schmidt <[email protected]>"]
edition = "2018"
categories = ["data-structures", "science"]
Expand All @@ -15,8 +15,8 @@ license = "BSD-2-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bigraph = {path = "../bigraph", version = "^0.3.1-alpha.0"}
compact-genome = {path = "../compact-genome", version = "^0.3.1-alpha.0"}
bigraph = {path = "../bigraph", version = "^0.3.1"}
compact-genome = {path = "../compact-genome", version = "^0.3.1"}
num-traits = "0.2"
bio = "0.31"
error-chain = "0.12"
Expand Down
8 changes: 4 additions & 4 deletions implementation/omnitigs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "omnitigs"
description = "Omnitig-related algorithms"
categories = ["mathematics", "algorithms", "science"]
keywords = ["genome", "assembly", "omnitigs", "bioinformatics"]
version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Sebastian Schmidt <[email protected]>"]
edition = "2018"
homepage = "https://github.com/algbio/practical-omnitigs/tree/master/implementation/compact-genome"
Expand All @@ -15,9 +15,9 @@ license = "BSD-2-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
traitgraph = {path = "../traitgraph", version = "^0.3.1-alpha.0"}
bigraph = {path = "../bigraph", version = "^0.3.1-alpha.0"}
traitsequence = {path = "../traitsequence", version = "^0.3.1-alpha.0"}
traitgraph = {path = "../traitgraph", version = "^0.3.1"}
bigraph = {path = "../bigraph", version = "^0.3.1"}
traitsequence = {path = "../traitsequence", version = "^0.3.1"}
bitvector = "0.1"
rand = "0.7"
log = "0.4"
4 changes: 2 additions & 2 deletions implementation/traitgraph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "traitgraph"
description = "Different representations with implemented operations on graphs"
categories = ["data-structures", "mathematics", "science"]
keywords = ["graph", "trait", "abstract", "implementation", "algorithm"]
version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Sebastian Schmidt <[email protected]>"]
edition = "2018"
homepage = "https://github.com/algbio/practical-omnitigs/tree/master/implementation/traitgraph"
Expand All @@ -18,7 +18,7 @@ license = "BSD-2-Clause"
petgraph = "0.5"
num-traits = "0.2"
bitvector = "0.1"
traitsequence = {path = "../traitsequence", version = "^0.3.1-alpha.0"}
traitsequence = {path = "../traitsequence", version = "^0.3.1"}
rand = "0.7"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion implementation/traitsequence/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "traitsequence"
description = "Traits to abstract over sequences."
categories = ["data-structures"]
keywords = ["sequence", "trait", "abstract", "strong-typedef"]
version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Sebastian Schmidt <[email protected]>"]
edition = "2018"
homepage = "https://github.com/algbio/practical-omnitigs/tree/master/implementation/traitsequence"
Expand Down

0 comments on commit da63c8d

Please sign in to comment.