Skip to content

Commit 14fdd0e

Browse files
authored
Merge pull request #304 from umccr/release-plz-2025-02-18T03-53-21Z
chore: release
2 parents f301524 + d7b6dca commit 14fdd0e

File tree

13 files changed

+57
-21
lines changed

13 files changed

+57
-21
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htsget-actix/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.8.1](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.8.0...htsget-actix-v0.8.1) - 2025-02-18
10+
11+
### Other
12+
13+
- *(htsget-config)* release v0.13.1
14+
915
## [0.8.0](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.7.2...htsget-actix-v0.8.0) - 2025-01-24
1016

1117
### Added

htsget-actix/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-actix"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
rust-version = "1.83"
55
authors = ["Daniel del Castillo de la Rosa <delcastillodelarosadaniel@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
66
edition = "2021"
@@ -35,10 +35,10 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
3535
tracing-actix-web = "0.7"
3636
tracing = "0.1"
3737

38-
htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false }
39-
htsget-search = { version = "0.10.0", path = "../htsget-search", default-features = false }
38+
htsget-http = { version = "0.5.3", path = "../htsget-http", default-features = false }
39+
htsget-search = { version = "0.10.1", path = "../htsget-search", default-features = false }
4040
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
41-
htsget-axum = { version = "0.3.0", path = "../htsget-axum", default-features = false }
41+
htsget-axum = { version = "0.3.1", path = "../htsget-axum", default-features = false }
4242

4343
[dev-dependencies]
4444
htsget-test = { path = "../htsget-test", features = ["http"], default-features = false }

htsget-axum/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.1](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.3.0...htsget-axum-v0.3.1) - 2025-02-18
10+
11+
### Other
12+
13+
- *(htsget-config)* release v0.13.1
14+
915
## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.2.2...htsget-axum-v0.3.0) - 2025-01-24
1016

1117
### Added

htsget-axum/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-axum"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
rust-version = "1.83"
55
authors = ["Marko Malenic <mmalenic1@gmail.com>"]
66
edition = "2021"
@@ -53,8 +53,8 @@ thiserror = "2"
5353
tracing = "0.1"
5454

5555
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
56-
htsget-search = { version = "0.10.0", path = "../htsget-search", default-features = false }
57-
htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false }
56+
htsget-search = { version = "0.10.1", path = "../htsget-search", default-features = false }
57+
htsget-http = { version = "0.5.3", path = "../htsget-http", default-features = false }
5858

5959
[dev-dependencies]
6060
htsget-test = { path = "../htsget-test", features = ["http"], default-features = false }

htsget-http/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.3](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.5.2...htsget-http-v0.5.3) - 2025-02-18
10+
11+
### Other
12+
13+
- *(htsget-config)* release v0.13.1
14+
915
## [0.5.2](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.5.1...htsget-http-v0.5.2) - 2025-01-24
1016

1117
### Added

htsget-http/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-http"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
rust-version = "1.83"
55
authors = ["Daniel del Castillo de la Rosa <delcastillodelarosadaniel@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
66
edition = "2021"
@@ -21,7 +21,7 @@ thiserror = "2"
2121
serde = { version = "1", features = ["derive"] }
2222
serde_json = "1"
2323
http = "1"
24-
htsget-search = { version = "0.10.0", path = "../htsget-search", default-features = false }
24+
htsget-search = { version = "0.10.1", path = "../htsget-search", default-features = false }
2525
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
2626
futures = { version = "0.3" }
2727
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

htsget-lambda/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.1](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.6.0...htsget-lambda-v0.6.1) - 2025-02-18
10+
11+
### Other
12+
13+
- *(htsget-config)* release v0.13.1
14+
915
## [0.6.0](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.5.2...htsget-lambda-v0.6.0) - 2025-01-24
1016

1117
### Added

htsget-lambda/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-lambda"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
rust-version = "1.83"
55
authors = ["Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
66
edition = "2021"
@@ -27,5 +27,5 @@ lambda_http = { version = "0.14" }
2727
tracing = "0.1"
2828

2929
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
30-
htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false }
31-
htsget-axum = { version = "0.3.0", path = "../htsget-axum", default-features = false }
30+
htsget-http = { version = "0.5.3", path = "../htsget-http", default-features = false }
31+
htsget-axum = { version = "0.3.1", path = "../htsget-axum", default-features = false }

htsget-search/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.10.1](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.10.0...htsget-search-v0.10.1) - 2025-02-18
10+
11+
### Other
12+
13+
- *(htsget-config)* release v0.13.1
14+
915
## [0.10.0](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.9.1...htsget-search-v0.10.0) - 2025-01-24
1016

1117
### Added

htsget-search/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-search"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
rust-version = "1.83"
55
authors = ["Christian Perez Llamas <chrispz@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
66
edition = "2021"
@@ -44,7 +44,7 @@ http = "1"
4444
tracing = "0.1"
4545

4646
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
47-
htsget-storage = { version = "0.3.0", path = "../htsget-storage", default-features = false }
47+
htsget-storage = { version = "0.3.1", path = "../htsget-storage", default-features = false }
4848

4949
[dev-dependencies]
5050
tempfile = "3"

htsget-storage/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.1](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.3.0...htsget-storage-v0.3.1) - 2025-02-18
10+
11+
### Other
12+
13+
- *(htsget-config)* release v0.13.1
14+
915
## [0.3.0](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.2.1...htsget-storage-v0.3.0) - 2025-01-24
1016

1117
### Added

htsget-storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-storage"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
rust-version = "1.83"
55
authors = ["Marko Malenic <mmalenic1@gmail.com>"]
66
edition = "2021"

0 commit comments

Comments
 (0)