Skip to content

Commit

Permalink
Bump versions for noodles 0.61.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zaeleus committed Jan 25, 2024
1 parent 0820faa commit f8a3f7d
Show file tree
Hide file tree
Showing 33 changed files with 139 additions and 75 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.60.0", features = ["bam"] }
noodles = { version = "0.61.0", 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.53.0 - 2024-01-25

### Added

Expand Down
10 changes: 5 additions & 5 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.52.0"
version = "0.53.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -23,12 +23,12 @@ indexmap.workspace = true
tokio = { workspace = true, optional = true, features = ["fs", "io-util"] }

noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-csi = { path = "../noodles-csi", version = "0.29.0" }
noodles-sam = { path = "../noodles-sam", version = "0.49.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
noodles-csi = { path = "../noodles-csi", version = "0.30.0" }
noodles-sam = { path = "../noodles-sam", version = "0.50.0" }

[dev-dependencies]
noodles-sam = { path = "../noodles-sam", version = "0.49.0", features = ["async"] }
noodles-sam = { path = "../noodles-sam", version = "0.50.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.46.0 - 2024-01-25

### Changed

* bcf: Sync dependencies.

## 0.45.0 - 2023-12-14

### Added
Expand Down
8 changes: 4 additions & 4 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.45.0"
version = "0.46.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -17,9 +17,9 @@ async = ["dep:futures", "dep:tokio", "noodles-bgzf/async", "noodles-csi/async"]
byteorder.workspace = true
indexmap.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-csi = { path = "../noodles-csi", version = "0.29.0" }
noodles-vcf = { path = "../noodles-vcf", version = "0.48.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
noodles-csi = { path = "../noodles-csi", version = "0.30.0" }
noodles-vcf = { path = "../noodles-vcf", version = "0.49.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-bed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.12.0 - 2024-01-25

### Changed

* bed: Sync dependencies.

## 0.11.0 - 2023-12-14

### Changed
Expand Down
4 changes: 2 additions & 2 deletions noodles-bed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-bed"
version = "0.11.0"
version = "0.12.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -11,4 +11,4 @@ repository = "https://github.com/zaeleus/noodles"
documentation = "https://docs.rs/noodles-bed"

[dependencies]
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
2 changes: 1 addition & 1 deletion noodles-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.14.0 - 2024-01-25

### Changed

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

## Unreleased
## 0.52.0 - 2024-01-25

### Added

Expand Down
12 changes: 6 additions & 6 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.51.0"
version = "0.52.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -23,10 +23,10 @@ bzip2 = "0.4.4"
flate2.workspace = true
indexmap.workspace = true
md-5 = "0.10.0"
noodles-bam = { path = "../noodles-bam", version = "0.52.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-fasta = { path = "../noodles-fasta", version = "0.31.0" }
noodles-sam = { path = "../noodles-sam", version = "0.49.0" }
noodles-bam = { path = "../noodles-bam", version = "0.53.0" }
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.50.0" }
xz2 = "0.1.6"

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

[dev-dependencies]
noodles-sam = { path = "../noodles-sam", version = "0.49.0", features = ["async"] }
noodles-sam = { path = "../noodles-sam", version = "0.50.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-csi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.30.0 - 2024-01-25

### Changed

* csi: Sync dependencies.

## 0.29.0 - 2023-12-14

### Added
Expand Down
4 changes: 2 additions & 2 deletions noodles-csi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-csi"
version = "0.29.0"
version = "0.30.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
indexmap.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }

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

Expand Down
2 changes: 1 addition & 1 deletion noodles-fasta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.32.0 - 2024-01-25

### Changed

Expand Down
4 changes: 2 additions & 2 deletions noodles-fasta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-fasta"
version = "0.31.0"
version = "0.32.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -17,7 +17,7 @@ async = ["dep:tokio"]
bytes.workspace = true
memchr.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }

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

Expand Down
6 changes: 6 additions & 0 deletions noodles-gff/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.27.0 - 2024-01-25

### Changed

* gff: Sync dependencies.

## 0.26.0 - 2023-12-14

### Changed
Expand Down
6 changes: 3 additions & 3 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.26.0"
version = "0.27.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -13,6 +13,6 @@ documentation = "https://docs.rs/noodles-gff"
[dependencies]
indexmap.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-csi = { path = "../noodles-csi", version = "0.29.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
noodles-csi = { path = "../noodles-csi", version = "0.30.0" }
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.23.0 - 2024-01-25

### Changed

* gtf: Sync dependencies.

## 0.22.0 - 2023-12-14

### Changed
Expand Down
6 changes: 3 additions & 3 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.22.0"
version = "0.23.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -12,5 +12,5 @@ documentation = "https://docs.rs/noodles-gtf"

[dependencies]
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-csi = { path = "../noodles-csi", version = "0.29.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
noodles-csi = { path = "../noodles-csi", version = "0.30.0" }
6 changes: 6 additions & 0 deletions noodles-htsget/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.4.0 - 2024-01-25

### Changed

* htsget: Sync dependencies.

## 0.3.0 - 2023-12-14

### Changed
Expand Down
4 changes: 2 additions & 2 deletions noodles-htsget/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-htsget"
version = "0.3.0"
version = "0.4.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -14,7 +14,7 @@ documentation = "https://docs.rs/noodles-htsget"
base64 = "0.21.0"
bytes.workspace = true
futures = { workspace = true, features = ["std"] }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
reqwest.workspace = true
serde.workspace = true
url = { workspace = true, features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion noodles-refget/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.3.0 - 2024-01-25

### Changed

Expand Down
4 changes: 2 additions & 2 deletions noodles-refget/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noodles-refget"
version = "0.2.0"
version = "0.3.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -12,7 +12,7 @@ documentation = "https://docs.rs/noodles-refget"

[dependencies]
bytes.workspace = true
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
reqwest.workspace = true
serde.workspace = true
url.workspace = true
Expand Down
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.50.0 - 2024-01-25

### Added

Expand Down
6 changes: 3 additions & 3 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.49.0"
version = "0.50.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -20,8 +20,8 @@ indexmap.workspace = true
lexical-core = "0.8.5"
memchr.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-csi = { path = "../noodles-csi", version = "0.29.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
noodles-csi = { path = "../noodles-csi", version = "0.30.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-tabix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.36.0 - 2024-01-25

### Changed

* tabix: Sync dependencies.

## 0.35.0 - 2023-12-14

### Changed
Expand Down
6 changes: 3 additions & 3 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.35.0"
version = "0.36.0"
authors = ["Michael Macias <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -18,8 +18,8 @@ bit-vec.workspace = true
byteorder.workspace = true
indexmap.workspace = true
noodles-bgzf = { path = "../noodles-bgzf", version = "0.26.0" }
noodles-core = { path = "../noodles-core", version = "0.13.0" }
noodles-csi = { path = "../noodles-csi", version = "0.29.0" }
noodles-core = { path = "../noodles-core", version = "0.14.0" }
noodles-csi = { path = "../noodles-csi", version = "0.30.0" }

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

Expand Down
2 changes: 1 addition & 1 deletion noodles-util/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.33.0 - 2024-01-25

### Added

Expand Down
Loading

0 comments on commit f8a3f7d

Please sign in to comment.