Skip to content

Commit

Permalink
Bump versions for noodles 0.62.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zaeleus committed Feb 4, 2024
1 parent be7d7bd commit b42ac35
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ list; and formats, listed as [features]. For example, to work with the BAM
format, enable the `bam` feature.

```toml
noodles = { version = "0.62.0", features = ["bam"] }
noodles = { version = "0.62.1", features = ["bam"] }
```

Each enabled feature can then be imported by its re-exported name, e.g.,
Expand Down
2 changes: 1 addition & 1 deletion noodles-bam/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.54.1 - 2024-02-04

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion noodles-bam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-bam"
version = "0.54.0"
version = "0.54.1"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions noodles-cram/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.53.1 - 2024-02-04

### Fixed

* cram: Sync dependencies.

## 0.53.0 - 2024-02-01

### Changed
Expand Down
4 changes: 2 additions & 2 deletions noodles-cram/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-cram"
version = "0.53.0"
version = "0.53.1"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -23,7 +23,7 @@ bzip2 = "0.4.4"
flate2.workspace = true
indexmap.workspace = true
md-5 = "0.10.0"
noodles-bam = { path = "../noodles-bam", version = "0.54.0" }
noodles-bam = { path = "../noodles-bam", version = "0.54.1" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
noodles-fasta = { path = "../noodles-fasta", version = "0.32.0" }
noodles-sam = { path = "../noodles-sam", version = "0.51.0" }
Expand Down
6 changes: 6 additions & 0 deletions noodles-util/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.34.1 - 2024-02-04

### Fixed

* util: Sync dependencies.

## 0.34.0 - 2024-02-01

### Changed
Expand Down
6 changes: 3 additions & 3 deletions noodles-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-util"
version = "0.34.0"
version = "0.34.1"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -30,11 +30,11 @@ variant = [

[dependencies]
flate2 = { workspace = true }
noodles-bam = { path = "../noodles-bam", version = "0.54.0", optional = true }
noodles-bam = { path = "../noodles-bam", version = "0.54.1", optional = true }
noodles-bcf = { path = "../noodles-bcf", version = "0.46.0", optional = true }
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0", optional = true }
noodles-core = { path = "../noodles-core", version = "0.14.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.53.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.53.1", optional = true }
noodles-csi = { path = "../noodles-csi", version = "0.30.0", optional = true }
noodles-fasta = { path = "../noodles-fasta", version = "0.32.0", optional = true }
noodles-sam = { path = "../noodles-sam", version = "0.51.0", optional = true }
Expand Down
6 changes: 6 additions & 0 deletions noodles/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.62.1 - 2024-02-04

* [noodles-bam 0.54.1](https://github.com/zaeleus/noodles/blob/noodles-bam-0.54.1/noodles-bam/CHANGELOG.md)
* [noodles-cram 0.53.1](https://github.com/zaeleus/noodles/blob/noodles-cram-0.53.1/noodles-cram/CHANGELOG.md)
* [noodles-util 0.34.1](https://github.com/zaeleus/noodles/blob/noodles-util-0.34.1/noodles-util/CHANGELOG.md)

## 0.62.0 - 2024-02-01

* [noodles-bam 0.54.0](https://github.com/zaeleus/noodles/blob/noodles-bam-0.54.0/noodles-bam/CHANGELOG.md)
Expand Down
6 changes: 3 additions & 3 deletions noodles/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles"
version = "0.62.0"
version = "0.62.1"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -12,12 +12,12 @@ documentation = "https://docs.rs/noodles"
readme = "../README.md"

[dependencies]
noodles-bam = { path = "../noodles-bam", version = "0.54.0", optional = true }
noodles-bam = { path = "../noodles-bam", version = "0.54.1", optional = true }
noodles-bcf = { path = "../noodles-bcf", version = "0.46.0", optional = true }
noodles-bed = { path = "../noodles-bed", version = "0.12.0", optional = true }
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0", optional = true }
noodles-core = { path = "../noodles-core", version = "0.14.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.53.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.53.1", optional = true }
noodles-csi = { path = "../noodles-csi", version = "0.30.0", optional = true }
noodles-fasta = { path = "../noodles-fasta", version = "0.32.0", optional = true }
noodles-fastq = { path = "../noodles-fastq", version = "0.10.0", optional = true }
Expand Down

0 comments on commit b42ac35

Please sign in to comment.