Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 6, 2024
1 parent 1156d85 commit 3b661fc
Show file tree
Hide file tree
Showing 14 changed files with 53 additions and 24 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions htsget-actix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.6.2...htsget-actix-v0.7.0) - 2024-09-06

### Other
- Merge pull request [#259](https://github.com/umccr/htsget-rs/pull/259) from umccr/release-plz-2024-09-03T01-36-36Z
- [**breaking**] remove htsget-lambda library code and replace with axum router

## [0.6.2](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.6.1...htsget-actix-v0.6.2) - 2024-08-04

### Added
Expand Down
6 changes: 3 additions & 3 deletions htsget-actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-actix"
version = "0.6.2"
version = "0.7.0"
rust-version = "1.75"
authors = ["Daniel del Castillo de la Rosa <delcastillodelarosadaniel@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
Expand Down Expand Up @@ -32,8 +32,8 @@ tracing = "0.1"

htsget-http = { version = "0.4.16", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
htsget-config = { version = "0.10.2", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.7.0", path = "../htsget-test", features = ["http"], default-features = false }
htsget-axum = { version = "0.1.1", path = "../htsget-axum", default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions htsget-axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ async-trait = "0.1"
thiserror = "1"
tracing = "0.1"

htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
htsget-config = { version = "0.10.2", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.7.0", path = "../htsget-test", features = ["http"], default-features = false }
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.16", path = "../htsget-http", default-features = false }

Expand Down
5 changes: 5 additions & 0 deletions htsget-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.2](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.10.1...htsget-config-v0.10.2) - 2024-09-06

### Other
- add more server tests and fix Dockerfile.dockerignore

## [0.10.1](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.10.0...htsget-config-v0.10.1) - 2024-08-04

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion htsget-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-config"
version = "0.10.1"
version = "0.10.2"
rust-version = "1.75"
authors = ["Daniel del Castillo de la Rosa <delcastillodelarosadaniel@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions htsget-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ thiserror = "1"
serde = { version = "1", features = ["derive"] }
http = "1"
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.6.2", path = "../htsget-test", default-features = false }
htsget-config = { version = "0.10.2", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.7.0", path = "../htsget-test", default-features = false }
futures = { version = "0.3" }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
7 changes: 7 additions & 0 deletions htsget-lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.17...htsget-lambda-v0.5.0) - 2024-09-06

### Other
- Merge pull request [#259](https://github.com/umccr/htsget-rs/pull/259) from umccr/release-plz-2024-09-03T01-36-36Z
- add more server tests and fix Dockerfile.dockerignore
- [**breaking**] remove htsget-lambda library code and replace with axum router

## [0.4.17](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.16...htsget-lambda-v0.4.17) - 2024-08-04

### Other
Expand Down
6 changes: 3 additions & 3 deletions htsget-lambda/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-lambda"
version = "0.4.17"
version = "0.5.0"
rust-version = "1.75"
authors = ["Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
Expand Down Expand Up @@ -28,10 +28,10 @@ tracing = "0.1"
tracing-subscriber = "0.3"
bytes = "1"

htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
htsget-config = { version = "0.10.2", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.16", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
htsget-test = { version = "0.7.0", path = "../htsget-test", features = ["http"], default-features = false }
htsget-axum = { version = "0.1.1", path = "../htsget-axum", default-features = false }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions htsget-search/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ noodles = { version = "0.80", features = ["async", "core", "bgzf", "bam", "bcf",
thiserror = "1"
tracing = "0.1"

htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
htsget-storage = { version = "0.1.1", path = "../htsget-storage", default-features = false }
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
htsget-config = { version = "0.10.2", path = "../htsget-config", default-features = false }
htsget-storage = { version = "0.1.2", path = "../htsget-storage", default-features = false }
htsget-test = { version = "0.7.0", path = "../htsget-test", features = ["http"], default-features = false }

[dev-dependencies]
tempfile = "3"
Expand Down
5 changes: 5 additions & 0 deletions htsget-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.1.1...htsget-storage-v0.1.2) - 2024-09-06

### Other
- updated the following local packages: htsget-config, htsget-test

## [0.1.1](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.1.0...htsget-storage-v0.1.1) - 2024-08-05

### Other
Expand Down
6 changes: 3 additions & 3 deletions htsget-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-storage"
version = "0.1.1"
version = "0.1.2"
rust-version = "1.75"
authors = ["Marko Malenic <mmalenic1@gmail.com>"]
edition = "2021"
Expand Down Expand Up @@ -54,8 +54,8 @@ thiserror = "1"
tracing = "0.1"
base64 = "0.22"

htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
htsget-config = { version = "0.10.2", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.7.0", path = "../htsget-test", features = ["http"], default-features = false }

[dev-dependencies]
tower-http = { version = "0.5", features = ["fs"] }
Expand Down
6 changes: 6 additions & 0 deletions htsget-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.6.2...htsget-test-v0.7.0) - 2024-09-06

### Other
- add more server tests and fix Dockerfile.dockerignore
- [**breaking**] remove htsget-lambda library code and replace with axum router

## [0.6.2](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.6.1...htsget-test-v0.6.2) - 2024-08-04

### Other
Expand Down
4 changes: 2 additions & 2 deletions htsget-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-test"
version = "0.6.2"
version = "0.7.0"
rust-version = "1.75"
authors = ["Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
Expand Down Expand Up @@ -40,7 +40,7 @@ default = []

[dependencies]
# Server tests dependencies
htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false, optional = true }
htsget-config = { version = "0.10.2", path = "../htsget-config", default-features = false, optional = true }

noodles = { version = "0.80", optional = true, features = ["async", "bgzf", "vcf", "cram", "bcf", "bam", "fasta"] }

Expand Down

0 comments on commit 3b661fc

Please sign in to comment.