Skip to content

Commit 1156d85

Browse files
authored
Merge pull request #259 from umccr/release-plz-2024-09-03T01-36-36Z
chore: release
2 parents c0e0926 + 4866f4d commit 1156d85

File tree

9 files changed

+31
-15
lines changed

9 files changed

+31
-15
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htsget-actix/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
3030
tracing-actix-web = "0.7"
3131
tracing = "0.1"
3232

33-
htsget-http = { version = "0.4.15", path = "../htsget-http", default-features = false }
34-
htsget-search = { version = "0.8.0", path = "../htsget-search", default-features = false }
33+
htsget-http = { version = "0.4.16", path = "../htsget-http", default-features = false }
34+
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
3535
htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
3636
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
37-
htsget-axum = { version = "0.1.0", path = "../htsget-axum", default-features = false }
37+
htsget-axum = { version = "0.1.1", path = "../htsget-axum", default-features = false }
3838

3939
[dev-dependencies]
4040
async-trait = "0.1"

htsget-axum/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.1.1](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.1.0...htsget-axum-v0.1.1) - 2024-09-03
10+
11+
### Other
12+
- release
13+
- release
14+
915
## [0.1.0](https://github.com/umccr/htsget-rs/releases/tag/htsget-axum-v0.1.0) - 2024-09-03
1016

1117
### Added

htsget-axum/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-axum"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
rust-version = "1.75"
55
authors = ["Marko Malenic <[email protected]>"]
66
edition = "2021"
@@ -46,8 +46,8 @@ tracing = "0.1"
4646

4747
htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
4848
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
49-
htsget-search = { version = "0.8.0", path = "../htsget-search", default-features = false }
50-
htsget-http = { version = "0.4.15", path = "../htsget-http", default-features = false }
49+
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
50+
htsget-http = { version = "0.4.16", path = "../htsget-http", default-features = false }
5151

5252
[dev-dependencies]
5353
tempfile = "3"

htsget-http/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.16](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.15...htsget-http-v0.4.16) - 2024-09-03
10+
11+
### Other
12+
- updated the following local packages: htsget-search
13+
914
## [0.4.15](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.14...htsget-http-v0.4.15) - 2024-08-04
1015

1116
### Other

htsget-http/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-http"
3-
version = "0.4.15"
3+
version = "0.4.16"
44
rust-version = "1.75"
55
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
66
edition = "2021"
@@ -19,7 +19,7 @@ default = []
1919
thiserror = "1"
2020
serde = { version = "1", features = ["derive"] }
2121
http = "1"
22-
htsget-search = { version = "0.8.0", path = "../htsget-search", default-features = false }
22+
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
2323
htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
2424
htsget-test = { version = "0.6.2", path = "../htsget-test", default-features = false }
2525
futures = { version = "0.3" }

htsget-lambda/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ tracing-subscriber = "0.3"
2929
bytes = "1"
3030

3131
htsget-config = { version = "0.10.1", path = "../htsget-config", default-features = false }
32-
htsget-search = { version = "0.8.0", path = "../htsget-search", default-features = false }
33-
htsget-http = { version = "0.4.15", path = "../htsget-http", default-features = false }
32+
htsget-search = { version = "0.8.1", path = "../htsget-search", default-features = false }
33+
htsget-http = { version = "0.4.16", path = "../htsget-http", default-features = false }
3434
htsget-test = { version = "0.6.2", path = "../htsget-test", features = ["http"], default-features = false }
35-
htsget-axum = { version = "0.1.0", path = "../htsget-axum", default-features = false }
35+
htsget-axum = { version = "0.1.1", path = "../htsget-axum", default-features = false }
3636

3737
[dev-dependencies]
3838
async-trait = "0.1"

htsget-search/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ 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-search-v0.8.0...htsget-search-v0.8.1) - 2024-09-03
10+
11+
### Other
12+
- release
13+
914
## [0.8.0](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.7.1...htsget-search-v0.8.0) - 2024-08-04
1015

1116
### Other

htsget-search/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-search"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
rust-version = "1.75"
55
authors = ["Christian Perez Llamas <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
66
edition = "2021"

0 commit comments

Comments
 (0)