diff --git a/Cargo.lock b/Cargo.lock index 8d08d6be..6b69e2f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1679,7 +1679,7 @@ dependencies = [ [[package]] name = "htsget-actix" -version = "0.5.7" +version = "0.5.8" dependencies = [ "actix-cors", "actix-web", @@ -1704,7 +1704,7 @@ dependencies = [ [[package]] name = "htsget-config" -version = "0.8.0" +version = "0.8.1" dependencies = [ "async-trait", "clap", @@ -1733,7 +1733,7 @@ dependencies = [ [[package]] name = "htsget-http" -version = "0.4.11" +version = "0.4.12" dependencies = [ "futures", "htsget-config", @@ -1748,7 +1748,7 @@ dependencies = [ [[package]] name = "htsget-lambda" -version = "0.4.13" +version = "0.4.14" dependencies = [ "async-trait", "bytes", @@ -1772,7 +1772,7 @@ dependencies = [ [[package]] name = "htsget-search" -version = "0.6.5" +version = "0.6.6" dependencies = [ "async-trait", "aws-config", @@ -1806,7 +1806,7 @@ dependencies = [ [[package]] name = "htsget-test" -version = "0.5.3" +version = "0.5.4" dependencies = [ "async-trait", "aws-config", diff --git a/htsget-actix/CHANGELOG.md b/htsget-actix/CHANGELOG.md index 354234c1..911162d2 100644 --- a/htsget-actix/CHANGELOG.md +++ b/htsget-actix/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.8](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.5.7...htsget-actix-v0.5.8) - 2024-01-02 + +### Other +- *(deps)* update noodles to 0.60, new clippy warnings + ## [0.5.7](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.5.6...htsget-actix-v0.5.7) - 2023-11-02 ### Other diff --git a/htsget-actix/Cargo.toml b/htsget-actix/Cargo.toml index 15b12c3b..5eaa5097 100644 --- a/htsget-actix/Cargo.toml +++ b/htsget-actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-actix" -version = "0.5.7" +version = "0.5.8" rust-version = "1.70" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic "] edition = "2021" @@ -23,10 +23,10 @@ rustls-pemfile = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1" futures-util = { version = "0.3" } -htsget-http = { version = "0.4.11", path = "../htsget-http", default-features = false } -htsget-search = { version = "0.6.5", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.5.3", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false } +htsget-http = { version = "0.4.12", path = "../htsget-http", default-features = false } +htsget-search = { version = "0.6.6", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.5.4", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false } futures = { version = "0.3" } tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] } diff --git a/htsget-config/CHANGELOG.md b/htsget-config/CHANGELOG.md index 51bf564e..69ffd1aa 100644 --- a/htsget-config/CHANGELOG.md +++ b/htsget-config/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.1](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.8.0...htsget-config-v0.8.1) - 2024-01-02 + +### Other +- *(deps)* further minor dependency changes +- *(deps)* update noodles to 0.60, new clippy warnings + ## [0.8.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.7.1...htsget-config-v0.8.0) - 2023-11-02 ### Added diff --git a/htsget-config/Cargo.toml b/htsget-config/Cargo.toml index ef58e949..67014f76 100644 --- a/htsget-config/Cargo.toml +++ b/htsget-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-config" -version = "0.8.0" +version = "0.8.1" rust-version = "1.70" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic "] edition = "2021" diff --git a/htsget-http/CHANGELOG.md b/htsget-http/CHANGELOG.md index 552f2da1..94deb7e1 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.12](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.11...htsget-http-v0.4.12) - 2024-01-02 + +### Other +- updated the following local packages: htsget-config, htsget-search, htsget-test + ## [0.4.11](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.10...htsget-http-v0.4.11) - 2023-11-02 ### Other diff --git a/htsget-http/Cargo.toml b/htsget-http/Cargo.toml index 727b7215..4e50b4ad 100644 --- a/htsget-http/Cargo.toml +++ b/htsget-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-http" -version = "0.4.11" +version = "0.4.12" rust-version = "1.70" 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.6.5", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.5.3", path = "../htsget-test", default-features = false } +htsget-search = { version = "0.6.6", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.5.4", path = "../htsget-test", default-features = false } futures = { version = "0.3" } tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] } tracing = "0.1" diff --git a/htsget-lambda/CHANGELOG.md b/htsget-lambda/CHANGELOG.md index 1e603606..496bdb26 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.14](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.13...htsget-lambda-v0.4.14) - 2024-01-02 + +### Other +- *(deps)* update noodles to 0.60, new clippy warnings + ## [0.4.13](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.12...htsget-lambda-v0.4.13) - 2023-11-02 ### Other diff --git a/htsget-lambda/Cargo.toml b/htsget-lambda/Cargo.toml index e5b13059..62125137 100644 --- a/htsget-lambda/Cargo.toml +++ b/htsget-lambda/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-lambda" -version = "0.4.13" +version = "0.4.14" rust-version = "1.70" authors = ["Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -20,10 +20,10 @@ tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] } tower-http = { version = "0.4", features = ["cors"] } lambda_http = { version = "0.8" } lambda_runtime = { version = "0.8" } -htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false } -htsget-search = { version = "0.6.5", path = "../htsget-search", default-features = false } -htsget-http = { version = "0.4.11", path = "../htsget-http", default-features = false } -htsget-test = { version = "0.5.3", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false } +htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false } +htsget-search = { version = "0.6.6", path = "../htsget-search", default-features = false } +htsget-http = { version = "0.4.12", path = "../htsget-http", default-features = false } +htsget-test = { version = "0.5.4", 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 e6438b1f..07e020a0 100644 --- a/htsget-search/CHANGELOG.md +++ b/htsget-search/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.6](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.6.5...htsget-search-v0.6.6) - 2024-01-02 + +### Other +- *(deps)* further minor dependency changes +- *(deps)* update noodles to 0.60, new clippy warnings + ## [0.6.5](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.6.4...htsget-search-v0.6.5) - 2023-11-02 ### Added diff --git a/htsget-search/Cargo.toml b/htsget-search/Cargo.toml index c7dd843a..aef3a269 100644 --- a/htsget-search/Cargo.toml +++ b/htsget-search/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-search" -version = "0.6.5" +version = "0.6.6" rust-version = "1.65" authors = ["Christian Perez Llamas ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -59,8 +59,8 @@ hyper-rustls = { version = "0.24", features = ["rustls-native-certs", "http2", " # Error control, tracing, config thiserror = "1.0" -htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.5.3", path = "../htsget-test", features = ["cors-tests"], default-features = false } +htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.5.4", 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 b3436bd4..0635e5d2 100644 --- a/htsget-test/CHANGELOG.md +++ b/htsget-test/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.4](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.5.3...htsget-test-v0.5.4) - 2024-01-02 + +### Other +- *(deps)* further minor dependency changes +- *(deps)* update noodles to 0.60, new clippy warnings + ## [0.5.3](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.5.2...htsget-test-v0.5.3) - 2023-11-02 ### Other diff --git a/htsget-test/Cargo.toml b/htsget-test/Cargo.toml index 8e91df09..3e9ea5e0 100644 --- a/htsget-test/Cargo.toml +++ b/htsget-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-test" -version = "0.5.3" +version = "0.5.4" rust-version = "1.67" authors = ["Marko Malenic "] edition = "2021" @@ -45,7 +45,7 @@ default = [] [dependencies] # Server tests dependencies -htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false, optional = true } +htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false, optional = true } noodles = { version = "0.60", optional = true, features = ["async", "bgzf", "vcf"] }