Skip to content

Commit

Permalink
Bump versions for noodles 0.54.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zaeleus committed Oct 19, 2023
1 parent 2ae1c91 commit f08447c
Show file tree
Hide file tree
Showing 23 changed files with 99 additions and 44 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.53.0", features = ["bam"] }
noodles = { version = "0.54.0", features = ["bam"] }
```

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

## 0.48.0 - 2023-10-19

### Changed

* bam: Sync dependencies.

## 0.47.0 - 2023-10-12

### Added
Expand Down
8 changes: 4 additions & 4 deletions noodles-bam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-bam"
version = "0.47.0"
version = "0.48.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -22,11 +22,11 @@ tokio = { workspace = true, optional = true, features = ["fs", "io-util"] }

noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.0" }
noodles-sam = { path = "../noodles-sam", version = "0.44.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.1" }
noodles-sam = { path = "../noodles-sam", version = "0.45.0" }

[dev-dependencies]
noodles-sam = { path = "../noodles-sam", version = "0.44.0", features = ["async"] }
noodles-sam = { path = "../noodles-sam", version = "0.45.0", features = ["async"] }
tokio = { workspace = true, features = ["io-std", "macros", "rt-multi-thread"] }

[package.metadata.docs.rs]
Expand Down
6 changes: 6 additions & 0 deletions noodles-bcf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.39.0 - 2023-10-19

### Changed

* bcf: Sync dependencies.

## 0.38.0 - 2023-10-12

### Changed
Expand Down
6 changes: 3 additions & 3 deletions noodles-bcf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-bcf"
version = "0.38.0"
version = "0.39.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -18,8 +18,8 @@ byteorder.workspace = true
indexmap.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.0" }
noodles-vcf = { path = "../noodles-vcf", version = "0.41.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.1" }
noodles-vcf = { path = "../noodles-vcf", version = "0.42.0" }

futures = { workspace = true, optional = true, features = ["std"] }
tokio = { workspace = true, optional = true, features = ["io-util"] }
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.45.0 - 2023-10-19

### Changed

* cram: Sync dependencies.

## 0.44.0 - 2023-10-12

### Changed
Expand Down
8 changes: 4 additions & 4 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.44.0"
version = "0.45.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -21,10 +21,10 @@ bytes.workspace = true
bzip2 = "0.4.4"
flate2.workspace = true
md-5 = "0.10.0"
noodles-bam = { path = "../noodles-bam", version = "0.47.0" }
noodles-bam = { path = "../noodles-bam", version = "0.48.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-fasta = { path = "../noodles-fasta", version = "0.30.0" }
noodles-sam = { path = "../noodles-sam", version = "0.44.0" }
noodles-sam = { path = "../noodles-sam", version = "0.45.0" }
xz2 = "0.1.6"

async-compression = { version = "0.4.0", optional = true, features = ["gzip", "tokio"] }
Expand All @@ -35,7 +35,7 @@ tokio = { workspace = true, optional = true, features = ["fs", "io-util"] }
libdeflater = { workspace = true, optional = true }

[dev-dependencies]
noodles-sam = { path = "../noodles-sam", version = "0.44.0", features = ["async"] }
noodles-sam = { path = "../noodles-sam", version = "0.45.0", features = ["async"] }
tokio = { workspace = true, features = ["io-std", "macros", "rt-multi-thread"] }

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion noodles-csi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.25.1 - 2023-10-19

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion noodles-csi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-csi"
version = "0.25.0"
version = "0.25.1"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion noodles-gff/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.22.0 - 2023-10-19

### Added

Expand Down
4 changes: 2 additions & 2 deletions noodles-gff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-gff"
version = "0.21.0"
version = "0.22.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -14,5 +14,5 @@ documentation = "https://docs.rs/noodles-gff"
indexmap.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.1" }
percent-encoding.workspace = true
6 changes: 6 additions & 0 deletions noodles-gtf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.18.0 - 2023-10-19

### Changed

* gtf: Sync dependencies.

## 0.17.0 - 2023-10-12

### Changed
Expand Down
4 changes: 2 additions & 2 deletions noodles-gtf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-gtf"
version = "0.17.0"
version = "0.18.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -13,4 +13,4 @@ documentation = "https://docs.rs/noodles-gtf"
[dependencies]
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.1" }
2 changes: 1 addition & 1 deletion noodles-sam/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.45.0 - 2023-10-19

### Added

Expand Down
4 changes: 2 additions & 2 deletions noodles-sam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-sam"
version = "0.44.0"
version = "0.45.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -20,7 +20,7 @@ lexical-core = "0.8.5"
memchr.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.1" }

futures = { workspace = true, optional = true, features = ["std"] }
tokio = { workspace = true, optional = true, features = ["io-util"] }
Expand Down
6 changes: 6 additions & 0 deletions noodles-tabix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.31.0 - 2023-10-19

### Changed

* tabix: Sync dependencies.

## 0.30.0 - 2023-10-12

### Changed
Expand Down
4 changes: 2 additions & 2 deletions noodles-tabix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-tabix"
version = "0.30.0"
version = "0.31.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -18,7 +18,7 @@ bit-vec.workspace = true
byteorder.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.1" }

tokio = { workspace = true, optional = true, features = ["fs", "io-util"] }

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.26.0 - 2023-10-19

### Changed

* util: Sync dependencies.

## 0.25.0 - 2023-10-12

### Changed
Expand Down
14 changes: 7 additions & 7 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.25.0"
version = "0.26.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -30,15 +30,15 @@ variant = [

[dependencies]
flate2 = { workspace = true }
noodles-bam = { path = "../noodles-bam", version = "0.47.0", optional = true }
noodles-bcf = { path = "../noodles-bcf", version = "0.38.0", optional = true }
noodles-bam = { path = "../noodles-bam", version = "0.48.0", optional = true }
noodles-bcf = { path = "../noodles-bcf", version = "0.39.0", optional = true }
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0", optional = true }
noodles-core = { path = "../noodles-core", version = "0.12.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.44.0", optional = true }
noodles-csi = { path = "../noodles-csi", version = "0.25.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.45.0", optional = true }
noodles-csi = { path = "../noodles-csi", version = "0.25.1", optional = true }
noodles-fasta = { path = "../noodles-fasta", version = "0.30.0", optional = true }
noodles-sam = { path = "../noodles-sam", version = "0.44.0", optional = true }
noodles-vcf = { path = "../noodles-vcf", version = "0.41.0", optional = true }
noodles-sam = { path = "../noodles-sam", version = "0.45.0", optional = true }
noodles-vcf = { path = "../noodles-vcf", version = "0.42.0", optional = true }

[package.metadata.docs.rs]
all-features = true
Expand Down
6 changes: 6 additions & 0 deletions noodles-vcf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.42.0 - 2023-10-19

### Changed

* vcf: Sync dependencies.

## 0.41.0 - 2023-10-12

### Changed
Expand Down
6 changes: 3 additions & 3 deletions noodles-vcf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-vcf"
version = "0.41.0"
version = "0.42.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -18,8 +18,8 @@ indexmap.workspace = true
memchr.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0" }
noodles-core = { path = "../noodles-core", version = "0.12.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.0" }
noodles-tabix = { path = "../noodles-tabix", version = "0.30.0" }
noodles-csi = { path = "../noodles-csi", version = "0.25.1" }
noodles-tabix = { path = "../noodles-tabix", version = "0.31.0" }
percent-encoding.workspace = true

futures = { workspace = true, optional = true, features = ["std"] }
Expand Down
13 changes: 13 additions & 0 deletions noodles/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.54.0 - 2023-10-19

* [noodles-bam 0.48.0](https://github.com/zaeleus/noodles/blob/noodles-bam-0.48.0/noodles-bam/CHANGELOG.md)
* [noodles-bcf 0.39.0](https://github.com/zaeleus/noodles/blob/noodles-bcf-0.39.0/noodles-bcf/CHANGELOG.md)
* [noodles-cram 0.45.0](https://github.com/zaeleus/noodles/blob/noodles-cram-0.45.0/noodles-cram/CHANGELOG.md)
* [noodles-csi 0.25.1](https://github.com/zaeleus/noodles/blob/noodles-csi-0.25.1/noodles-csi/CHANGELOG.md)
* [noodles-gff 0.22.0](https://github.com/zaeleus/noodles/blob/noodles-gff-0.22.0/noodles-gff/CHANGELOG.md)
* [noodles-gtf 0.18.0](https://github.com/zaeleus/noodles/blob/noodles-gtf-0.18.0/noodles-gtf/CHANGELOG.md)
* [noodles-sam 0.45.0](https://github.com/zaeleus/noodles/blob/noodles-sam-0.45.0/noodles-sam/CHANGELOG.md)
* [noodles-tabix 0.31.0](https://github.com/zaeleus/noodles/blob/noodles-tabix-0.31.0/noodles-tabix/CHANGELOG.md)
* [noodles-util 0.26.0](https://github.com/zaeleus/noodles/blob/noodles-util-0.26.0/noodles-util/CHANGELOG.md)
* [noodles-vcf 0.42.0](https://github.com/zaeleus/noodles/blob/noodles-vcf-0.42.0/noodles-vcf/CHANGELOG.md)

## 0.53.0 - 2023-10-12

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

[dependencies]
noodles-bam = { path = "../noodles-bam", version = "0.47.0", optional = true }
noodles-bcf = { path = "../noodles-bcf", version = "0.38.0", optional = true }
noodles-bam = { path = "../noodles-bam", version = "0.48.0", optional = true }
noodles-bcf = { path = "../noodles-bcf", version = "0.39.0", optional = true }
noodles-bed = { path = "../noodles-bed", version = "0.10.0", optional = true }
noodles-bgzf = { path = "../noodles-bgzf", version = "0.25.0", optional = true }
noodles-core = { path = "../noodles-core", version = "0.12.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.44.0", optional = true }
noodles-csi = { path = "../noodles-csi", version = "0.25.0", optional = true }
noodles-cram = { path = "../noodles-cram", version = "0.45.0", optional = true }
noodles-csi = { path = "../noodles-csi", version = "0.25.1", optional = true }
noodles-fasta = { path = "../noodles-fasta", version = "0.30.0", optional = true }
noodles-fastq = { path = "../noodles-fastq", version = "0.9.0", optional = true }
noodles-gff = { path = "../noodles-gff", version = "0.21.0", optional = true }
noodles-gtf = { path = "../noodles-gtf", version = "0.17.0", optional = true }
noodles-gff = { path = "../noodles-gff", version = "0.22.0", optional = true }
noodles-gtf = { path = "../noodles-gtf", version = "0.18.0", optional = true }
noodles-htsget = { path = "../noodles-htsget", version = "0.2.0", optional = true }
noodles-refget = { path = "../noodles-refget", version = "0.1.0", optional = true }
noodles-sam = { path = "../noodles-sam", version = "0.44.0", optional = true }
noodles-tabix = { path = "../noodles-tabix", version = "0.30.0", optional = true }
noodles-vcf = { path = "../noodles-vcf", version = "0.41.0", optional = true }
noodles-sam = { path = "../noodles-sam", version = "0.45.0", optional = true }
noodles-tabix = { path = "../noodles-tabix", version = "0.31.0", optional = true }
noodles-vcf = { path = "../noodles-vcf", version = "0.42.0", optional = true }

[features]
default = []
Expand Down

0 comments on commit f08447c

Please sign in to comment.