Skip to content

Commit cc51395

Browse files
committed
Specify version for dependencies
1 parent 9dbcd5b commit cc51395

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
All notable changes to this project will be documented in this file. The format is roughly based on [Keep a Changelog], and this project tries to adheres to [Semantic Versioning].
44

5-
## [0.0.18] - TBD
5+
## [0.0.18] - 2025-05-09
66

77
### Fixed
88

9+
- Specified dependencies.
910
- Corrected `SamParser` to handle case when all parameters are on one line
1011

1112
## [0.0.17] - 2025-05-06

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2024"
33
name = "zoe"
4-
version = "0.0.17"
4+
version = "0.0.18"
55
rust-version = "1.87"
66
description = "A nightly library for viral genomics"
77
license = "Apache-2.0"
@@ -43,10 +43,10 @@ multiversion = ["dep:multiversion"]
4343
arbitrary = ["dep:arbitrary"]
4444

4545
[dependencies]
46-
arbitrary = { version = "*", optional = true, features = ["derive"] }
47-
multiversion = { version = "*", optional = true }
48-
rand_xoshiro = { version = "*", optional = true }
49-
itoa = "*"
46+
arbitrary = { version = "1", optional = true, features = ["derive"] }
47+
multiversion = { version = "0.8", optional = true }
48+
rand_xoshiro = { version = "0.7", optional = true }
49+
itoa = "1"
5050

5151
[profile.release]
5252
strip = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bioinformatics. In particular, we focus on common data formats and methods relev
2020

2121
### How do I add this crate?
2222

23-
<!-- Provided *Zoe* has published the latest version to [crates.io](https://crates.io/), within your project you can simply use: `cargo add zoe` -->
23+
Provided *Zoe* has published the latest version to [crates.io](https://crates.io/), within your project you can simply use: `cargo add zoe`
2424

2525
If you would like to pin to a Github tag or commit, you could use the following within your `Cargo.toml` project file:
2626

0 commit comments

Comments
 (0)