From 8eea62abd1d907476bf098fd3f72890f1fa32e3d Mon Sep 17 00:00:00 2001 From: release-plz Date: Fri, 2 Jun 2023 01:46:30 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 12 ++++++------ htsget-actix/CHANGELOG.md | 8 ++++++++ htsget-actix/Cargo.toml | 10 +++++----- htsget-config/CHANGELOG.md | 8 ++++++++ htsget-config/Cargo.toml | 2 +- htsget-http/CHANGELOG.md | 5 +++++ htsget-http/Cargo.toml | 8 ++++---- htsget-lambda/CHANGELOG.md | 5 +++++ htsget-lambda/Cargo.toml | 10 +++++----- htsget-search/CHANGELOG.md | 5 +++++ htsget-search/Cargo.toml | 6 +++--- htsget-test/CHANGELOG.md | 5 +++++ htsget-test/Cargo.toml | 4 ++-- 13 files changed, 62 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1248db572..bcd8a271d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1719,7 +1719,7 @@ dependencies = [ [[package]] name = "htsget-actix" -version = "0.4.0" +version = "0.4.1" dependencies = [ "actix-cors", "actix-web", @@ -1745,7 +1745,7 @@ dependencies = [ [[package]] name = "htsget-config" -version = "0.4.0" +version = "0.5.0" dependencies = [ "async-trait", "clap 4.2.7", @@ -1768,7 +1768,7 @@ dependencies = [ [[package]] name = "htsget-http" -version = "0.4.0" +version = "0.4.1" dependencies = [ "futures", "htsget-config", @@ -1783,7 +1783,7 @@ dependencies = [ [[package]] name = "htsget-lambda" -version = "0.4.0" +version = "0.4.1" dependencies = [ "async-trait", "bytes", @@ -1807,7 +1807,7 @@ dependencies = [ [[package]] name = "htsget-search" -version = "0.4.0" +version = "0.4.1" dependencies = [ "async-trait", "aws-config", @@ -1846,7 +1846,7 @@ dependencies = [ [[package]] name = "htsget-test" -version = "0.4.0" +version = "0.4.1" dependencies = [ "async-trait", "base64 0.21.0", diff --git a/htsget-actix/CHANGELOG.md b/htsget-actix/CHANGELOG.md index 187cfadd6..821b38a89 100644 --- a/htsget-actix/CHANGELOG.md +++ b/htsget-actix/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.4.0...htsget-actix-v0.4.1) - 2023-06-02 + +### Fixed +- *(actix)* incorrect feature flags + +### Other +- add debug line for config when starting server + ## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.2.0...htsget-actix-v0.3.0) - 2023-05-29 ### Added diff --git a/htsget-actix/Cargo.toml b/htsget-actix/Cargo.toml index f0ac48e97..9c313172c 100644 --- a/htsget-actix/Cargo.toml +++ b/htsget-actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-actix" -version = "0.4.0" +version = "0.4.1" rust-version = "1.64" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic "] edition = "2021" @@ -24,10 +24,10 @@ rustls-pemfile = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" futures-util = { version = "0.3" } -htsget-http = { version = "0.4.0", path = "../htsget-http", default-features = false } -htsget-search = { version = "0.4.0", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.4.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.4.0", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false } +htsget-http = { version = "0.4.1", path = "../htsget-http", default-features = false } +htsget-search = { version = "0.4.1", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.5.0", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.4.1", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false } futures = { version = "0.3" } tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] } diff --git a/htsget-config/CHANGELOG.md b/htsget-config/CHANGELOG.md index 9cec39f12..676002ee4 100644 --- a/htsget-config/CHANGELOG.md +++ b/htsget-config/CHANGELOG.md @@ -6,6 +6,14 @@ 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-config-v0.4.0...htsget-config-v0.5.0) - 2023-06-02 + +### Fixed +- *(config)* add default values to url storage + +### Other +- add example config files + ## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.2.0...htsget-config-v0.3.0) - 2023-05-29 ### Added diff --git a/htsget-config/Cargo.toml b/htsget-config/Cargo.toml index d0e976fa8..b24eb841d 100644 --- a/htsget-config/Cargo.toml +++ b/htsget-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-config" -version = "0.4.0" +version = "0.5.0" rust-version = "1.64" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic "] edition = "2021" diff --git a/htsget-http/CHANGELOG.md b/htsget-http/CHANGELOG.md index 28ec2b1cc..da3bb0ee2 100644 --- a/htsget-http/CHANGELOG.md +++ b/htsget-http/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.0...htsget-http-v0.4.1) - 2023-06-02 + +### Other +- updated the following local packages: htsget-config + ## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.2.0...htsget-http-v0.3.0) - 2023-05-29 ### Added diff --git a/htsget-http/Cargo.toml b/htsget-http/Cargo.toml index 00f47d915..10be61b35 100644 --- a/htsget-http/Cargo.toml +++ b/htsget-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-http" -version = "0.4.0" +version = "0.4.1" rust-version = "1.64" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic "] edition = "2021" @@ -19,9 +19,9 @@ default = [] thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } http = "0.2" -htsget-search = { version = "0.4.0", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.4.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.4.0", path = "../htsget-test", default-features = false } +htsget-search = { version = "0.4.1", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.5.0", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.4.1", path = "../htsget-test", default-features = false } futures = { version = "0.3" } tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] } tracing = "0.1" diff --git a/htsget-lambda/CHANGELOG.md b/htsget-lambda/CHANGELOG.md index 5436e2b46..ff4621109 100644 --- a/htsget-lambda/CHANGELOG.md +++ b/htsget-lambda/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.0...htsget-lambda-v0.4.1) - 2023-06-02 + +### Other +- add debug line for config when starting server + ## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.2.0...htsget-lambda-v0.3.0) - 2023-05-29 ### Added diff --git a/htsget-lambda/Cargo.toml b/htsget-lambda/Cargo.toml index 147371dc4..a85c57763 100644 --- a/htsget-lambda/Cargo.toml +++ b/htsget-lambda/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-lambda" -version = "0.4.0" +version = "0.4.1" rust-version = "1.64" authors = ["Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -20,10 +20,10 @@ tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] } tower-http = { version = "0.3", features = ["cors"] } lambda_http = { version = "0.7" } lambda_runtime = { version = "0.7" } -htsget-config = { version = "0.4.0", path = "../htsget-config", default-features = false } -htsget-search = { version = "0.4.0", path = "../htsget-search", default-features = false } -htsget-http = { version = "0.4.0", path = "../htsget-http", default-features = false } -htsget-test = { version = "0.4.0", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false } +htsget-config = { version = "0.5.0", path = "../htsget-config", default-features = false } +htsget-search = { version = "0.4.1", path = "../htsget-search", default-features = false } +htsget-http = { version = "0.4.1", path = "../htsget-http", default-features = false } +htsget-test = { version = "0.4.1", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false } serde = { version = "1.0" } serde_json = "1.0" mime = "0.3" diff --git a/htsget-search/CHANGELOG.md b/htsget-search/CHANGELOG.md index 5f6dec79d..b43e67c8e 100644 --- a/htsget-search/CHANGELOG.md +++ b/htsget-search/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.4.0...htsget-search-v0.4.1) - 2023-06-02 + +### Other +- updated the following local packages: htsget-config + ## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.2.0...htsget-search-v0.3.0) - 2023-05-29 ### Added diff --git a/htsget-search/Cargo.toml b/htsget-search/Cargo.toml index 8f56a644f..f96992f48 100644 --- a/htsget-search/Cargo.toml +++ b/htsget-search/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-search" -version = "0.4.0" +version = "0.4.1" rust-version = "1.64" authors = ["Christian Perez Llamas ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -48,8 +48,8 @@ reqwest = { version = "0.11", default-features = false, optional = true, feature # Error control, tracing, config thiserror = "1.0" -htsget-config = { version = "0.4.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.4.0", path = "../htsget-test", features = ["cors-tests"], default-features = false } +htsget-config = { version = "0.5.0", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.4.1", path = "../htsget-test", features = ["cors-tests"], default-features = false } tracing = "0.1" base64 = "0.21" serde = "1.0" diff --git a/htsget-test/CHANGELOG.md b/htsget-test/CHANGELOG.md index 2a6937037..f8c41f4b5 100644 --- a/htsget-test/CHANGELOG.md +++ b/htsget-test/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.4.0...htsget-test-v0.4.1) - 2023-06-02 + +### Other +- updated the following local packages: htsget-config + ## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.2.0...htsget-test-v0.3.0) - 2023-05-29 ### Added diff --git a/htsget-test/Cargo.toml b/htsget-test/Cargo.toml index e49e0bcb2..c2e56998e 100644 --- a/htsget-test/Cargo.toml +++ b/htsget-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-test" -version = "0.4.0" +version = "0.4.1" rust-version = "1.60" authors = ["Marko Malenic "] edition = "2021" @@ -35,7 +35,7 @@ default = [] [dependencies] # Server tests dependencies -htsget-config = { version = "0.4.0", path = "../htsget-config", default-features = false, optional = true } +htsget-config = { version = "0.5.0", path = "../htsget-config", default-features = false, optional = true } noodles-vcf = { version = "0.24", features = ["async"], optional = true } noodles-bgzf = { version = "0.19", features = ["async"], optional = true }