diff --git a/Cargo.lock b/Cargo.lock index 5e7ecfc7..f9879569 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2250,7 +2250,7 @@ dependencies = [ [[package]] name = "htsget-actix" -version = "0.7.2" +version = "0.7.3" dependencies = [ "actix-cors", "actix-web", @@ -2278,7 +2278,7 @@ dependencies = [ [[package]] name = "htsget-axum" -version = "0.2.2" +version = "0.2.3" dependencies = [ "async-trait", "axum", @@ -2305,7 +2305,7 @@ dependencies = [ [[package]] name = "htsget-config" -version = "0.12.0" +version = "0.12.1" dependencies = [ "async-trait", "aws-config", @@ -2339,7 +2339,7 @@ dependencies = [ [[package]] name = "htsget-http" -version = "0.5.1" +version = "0.5.2" dependencies = [ "futures", "htsget-config", @@ -2354,7 +2354,7 @@ dependencies = [ [[package]] name = "htsget-lambda" -version = "0.5.2" +version = "0.5.3" dependencies = [ "async-trait", "bytes", @@ -2380,7 +2380,7 @@ dependencies = [ [[package]] name = "htsget-search" -version = "0.9.1" +version = "0.9.2" dependencies = [ "async-trait", "criterion", @@ -2399,7 +2399,7 @@ dependencies = [ [[package]] name = "htsget-storage" -version = "0.2.1" +version = "0.2.2" dependencies = [ "async-trait", "aws-config", @@ -2430,7 +2430,7 @@ dependencies = [ [[package]] name = "htsget-test" -version = "0.7.1" +version = "0.7.2" dependencies = [ "async-trait", "aws-config", diff --git a/htsget-actix/CHANGELOG.md b/htsget-actix/CHANGELOG.md index daee5eeb..2e7e823e 100644 --- a/htsget-actix/CHANGELOG.md +++ b/htsget-actix/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.3](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.7.2...htsget-actix-v0.7.3) - 2024-11-29 + +### Other + +- grammar and typos +- re-word and simplify, add quick starts where applicable + ## [0.7.2](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.7.1...htsget-actix-v0.7.2) - 2024-10-22 ### Other diff --git a/htsget-actix/Cargo.toml b/htsget-actix/Cargo.toml index 1c423995..4b0cf0b1 100644 --- a/htsget-actix/Cargo.toml +++ b/htsget-actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-actix" -version = "0.7.2" +version = "0.7.3" rust-version = "1.75" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -38,11 +38,11 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] } tracing-actix-web = "0.7" tracing = "0.1" -htsget-http = { version = "0.5.1", path = "../htsget-http", default-features = false } -htsget-search = { version = "0.9.1", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.7.1", path = "../htsget-test", features = ["http"], default-features = false } -htsget-axum = { version = "0.2.2", path = "../htsget-axum", default-features = false } +htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false } +htsget-search = { version = "0.9.2", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.12.1", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.7.2", path = "../htsget-test", features = ["http"], default-features = false } +htsget-axum = { version = "0.2.3", path = "../htsget-axum", default-features = false } [dev-dependencies] async-trait = "0.1" diff --git a/htsget-axum/CHANGELOG.md b/htsget-axum/CHANGELOG.md index cb0e9abc..65a6b9b9 100644 --- a/htsget-axum/CHANGELOG.md +++ b/htsget-axum/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.3](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.2.2...htsget-axum-v0.2.3) - 2024-11-29 + +### Other + +- grammar and typos +- re-word and simplify, add quick starts where applicable + ## [0.2.2](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.2.1...htsget-axum-v0.2.2) - 2024-10-22 ### Other diff --git a/htsget-axum/Cargo.toml b/htsget-axum/Cargo.toml index 2eae66fa..f5a58520 100644 --- a/htsget-axum/Cargo.toml +++ b/htsget-axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-axum" -version = "0.2.2" +version = "0.2.3" rust-version = "1.75" authors = ["Marko Malenic "] edition = "2021" @@ -53,10 +53,10 @@ async-trait = "0.1" thiserror = "1" tracing = "0.1" -htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.7.1", path = "../htsget-test", features = ["http"], default-features = false } -htsget-search = { version = "0.9.1", path = "../htsget-search", default-features = false } -htsget-http = { version = "0.5.1", path = "../htsget-http", default-features = false } +htsget-config = { version = "0.12.1", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.7.2", path = "../htsget-test", features = ["http"], default-features = false } +htsget-search = { version = "0.9.2", path = "../htsget-search", default-features = false } +htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false } [dev-dependencies] tempfile = "3" diff --git a/htsget-config/CHANGELOG.md b/htsget-config/CHANGELOG.md index f709ba9d..c9f9fc10 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.12.1](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.12.0...htsget-config-v0.12.1) - 2024-11-29 + +### Other + +- grammar and typos +- fix new clippy warnings +- re-word and simplify, add quick starts where applicable + ## [0.12.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.11.0...htsget-config-v0.12.0) - 2024-10-16 ### Added diff --git a/htsget-config/Cargo.toml b/htsget-config/Cargo.toml index 00e7f3ba..2b5c23f9 100644 --- a/htsget-config/Cargo.toml +++ b/htsget-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-config" -version = "0.12.0" +version = "0.12.1" rust-version = "1.75" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" diff --git a/htsget-http/CHANGELOG.md b/htsget-http/CHANGELOG.md index 96f5e858..d714e601 100644 --- a/htsget-http/CHANGELOG.md +++ b/htsget-http/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.5.1...htsget-http-v0.5.2) - 2024-11-29 + +### Other + +- re-word and simplify, add quick starts where applicable + ## [0.5.1](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.5.0...htsget-http-v0.5.1) - 2024-10-16 ### Other diff --git a/htsget-http/Cargo.toml b/htsget-http/Cargo.toml index f4fbb260..56e86fb9 100644 --- a/htsget-http/Cargo.toml +++ b/htsget-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-http" -version = "0.5.1" +version = "0.5.2" rust-version = "1.75" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -20,9 +20,9 @@ default = [] thiserror = "1" serde = { version = "1", features = ["derive"] } http = "1" -htsget-search = { version = "0.9.1", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.7.1", path = "../htsget-test", default-features = false } +htsget-search = { version = "0.9.2", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.12.1", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.7.2", path = "../htsget-test", default-features = false } futures = { version = "0.3" } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } tracing = "0.1" diff --git a/htsget-lambda/CHANGELOG.md b/htsget-lambda/CHANGELOG.md index dde3c4bf..02929d41 100644 --- a/htsget-lambda/CHANGELOG.md +++ b/htsget-lambda/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.3](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.5.2...htsget-lambda-v0.5.3) - 2024-11-29 + +### Other + +- re-word and simplify, add quick starts where applicable + ## [0.5.2](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.5.1...htsget-lambda-v0.5.2) - 2024-10-22 ### Other diff --git a/htsget-lambda/Cargo.toml b/htsget-lambda/Cargo.toml index 8f3b479a..d05d87c9 100644 --- a/htsget-lambda/Cargo.toml +++ b/htsget-lambda/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-lambda" -version = "0.5.2" +version = "0.5.3" rust-version = "1.75" authors = ["Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -36,11 +36,11 @@ tracing = "0.1" tracing-subscriber = "0.3" bytes = "1" -htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false } -htsget-search = { version = "0.9.1", path = "../htsget-search", default-features = false } -htsget-http = { version = "0.5.1", path = "../htsget-http", default-features = false } -htsget-test = { version = "0.7.1", path = "../htsget-test", features = ["http"], default-features = false } -htsget-axum = { version = "0.2.2", path = "../htsget-axum", default-features = false } +htsget-config = { version = "0.12.1", path = "../htsget-config", default-features = false } +htsget-search = { version = "0.9.2", path = "../htsget-search", default-features = false } +htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false } +htsget-test = { version = "0.7.2", path = "../htsget-test", features = ["http"], default-features = false } +htsget-axum = { version = "0.2.3", path = "../htsget-axum", default-features = false } [dev-dependencies] async-trait = "0.1" diff --git a/htsget-search/CHANGELOG.md b/htsget-search/CHANGELOG.md index 41e39bbd..d453171f 100644 --- a/htsget-search/CHANGELOG.md +++ b/htsget-search/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.2](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.9.1...htsget-search-v0.9.2) - 2024-11-29 + +### Other + +- grammar and typos +- re-word and simplify, add quick starts where applicable + ## [0.9.1](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.9.0...htsget-search-v0.9.1) - 2024-10-16 ### Added diff --git a/htsget-search/Cargo.toml b/htsget-search/Cargo.toml index 9388ef06..b47b34a1 100644 --- a/htsget-search/Cargo.toml +++ b/htsget-search/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-search" -version = "0.9.1" +version = "0.9.2" rust-version = "1.75" authors = ["Christian Perez Llamas ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -43,9 +43,9 @@ noodles = { version = "0.83", features = ["async", "core", "bgzf", "bam", "bcf", thiserror = "1" tracing = "0.1" -htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false } -htsget-storage = { version = "0.2.1", path = "../htsget-storage", default-features = false } -htsget-test = { version = "0.7.1", path = "../htsget-test", features = ["http"], default-features = false } +htsget-config = { version = "0.12.1", path = "../htsget-config", default-features = false } +htsget-storage = { version = "0.2.2", path = "../htsget-storage", default-features = false } +htsget-test = { version = "0.7.2", path = "../htsget-test", features = ["http"], default-features = false } [dev-dependencies] tempfile = "3" diff --git a/htsget-storage/CHANGELOG.md b/htsget-storage/CHANGELOG.md index 05fdc6ac..2bcc0d29 100644 --- a/htsget-storage/CHANGELOG.md +++ b/htsget-storage/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.2.1...htsget-storage-v0.2.2) - 2024-11-29 + +### Other + +- re-word and simplify, add quick starts where applicable + ## [0.2.1](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.2.0...htsget-storage-v0.2.1) - 2024-10-16 ### Added diff --git a/htsget-storage/Cargo.toml b/htsget-storage/Cargo.toml index a9d914bc..52eb7471 100644 --- a/htsget-storage/Cargo.toml +++ b/htsget-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-storage" -version = "0.2.1" +version = "0.2.2" rust-version = "1.75" authors = ["Marko Malenic "] edition = "2021" @@ -58,8 +58,8 @@ thiserror = "1" tracing = "0.1" base64 = "0.22" -htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.7.1", path = "../htsget-test", features = ["http"], default-features = false } +htsget-config = { version = "0.12.1", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.7.2", path = "../htsget-test", features = ["http"], default-features = false } [dev-dependencies] tower-http = { version = "0.6", features = ["fs"] } diff --git a/htsget-test/CHANGELOG.md b/htsget-test/CHANGELOG.md index 8de8c863..c023ccfe 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.7.2](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.7.1...htsget-test-v0.7.2) - 2024-11-29 + +### Other + +- re-word and simplify, add quick starts where applicable + ## [0.7.1](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.7.0...htsget-test-v0.7.1) - 2024-10-16 ### Added diff --git a/htsget-test/Cargo.toml b/htsget-test/Cargo.toml index 5be34c5a..0b5dd2bc 100644 --- a/htsget-test/Cargo.toml +++ b/htsget-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-test" -version = "0.7.1" +version = "0.7.2" rust-version = "1.75" authors = ["Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -41,7 +41,7 @@ default = [] [dependencies] # Server tests dependencies -htsget-config = { version = "0.12.0", path = "../htsget-config", default-features = false, optional = true } +htsget-config = { version = "0.12.1", path = "../htsget-config", default-features = false, optional = true } noodles = { version = "0.83", optional = true, features = ["async", "bgzf", "vcf", "cram", "bcf", "bam", "fasta"] }