diff --git a/Cargo.lock b/Cargo.lock index 54c4b7aa3..9686837e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2092,7 +2092,7 @@ dependencies = [ [[package]] name = "htsget-storage" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-trait", "aws-config", diff --git a/htsget-axum/CHANGELOG.md b/htsget-axum/CHANGELOG.md index dd4014f62..71b632c52 100644 --- a/htsget-axum/CHANGELOG.md +++ b/htsget-axum/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0](https://github.com/umccr/htsget-rs/releases/tag/htsget-axum-v0.1.0) - 2024-08-05 + +### Added +- *(axum)* add join handle helper functions + +### Fixed +- *(axum)* enable http2 support, re-word docs to include htsget-axum + +### Other +- release +- update rust msrv +- *(axum)* add server tests for axum ticket server +- add routers for data and ticket servers +- move the data server to its own htsget-axum crate + ## [0.1.0](https://github.com/umccr/htsget-rs/releases/tag/htsget-axum-v0.1.0) - 2024-08-04 ### Added diff --git a/htsget-search/Cargo.toml b/htsget-search/Cargo.toml index bc6849882..ad3994c9f 100644 --- a/htsget-search/Cargo.toml +++ b/htsget-search/Cargo.toml @@ -39,7 +39,7 @@ thiserror = "1" tracing = "0.1" htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false } -htsget-storage = { version = "0.1.0", path = "../htsget-storage", 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 } [dev-dependencies] diff --git a/htsget-storage/CHANGELOG.md b/htsget-storage/CHANGELOG.md index 5bf285683..108955277 100644 --- a/htsget-storage/CHANGELOG.md +++ b/htsget-storage/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.1.0...htsget-storage-v0.1.1) - 2024-08-05 + +### Other +- release + ## [0.1.0](https://github.com/umccr/htsget-rs/releases/tag/htsget-storage-v0.1.0) - 2024-08-04 ### Other diff --git a/htsget-storage/Cargo.toml b/htsget-storage/Cargo.toml index ccc325c61..1d48f0e33 100644 --- a/htsget-storage/Cargo.toml +++ b/htsget-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-storage" -version = "0.1.0" +version = "0.1.1" rust-version = "1.75" authors = ["Marko Malenic "] edition = "2021"