Skip to content

Commit f301524

Browse files
authored
Merge pull request #302 from umccr/release-plz-2025-01-24T10-19-52Z
chore(htsget-config): release v0.14.0
2 parents cb75923 + 2402f10 commit f301524

File tree

10 files changed

+15
-9
lines changed

10 files changed

+15
-9
lines changed

Cargo.lock

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

htsget-actix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tracing = "0.1"
3737

3838
htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false }
3939
htsget-search = { version = "0.10.0", path = "../htsget-search", default-features = false }
40-
htsget-config = { version = "0.13.0", path = "../htsget-config", default-features = false }
40+
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
4141
htsget-axum = { version = "0.3.0", path = "../htsget-axum", default-features = false }
4242

4343
[dev-dependencies]

htsget-axum/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async-trait = "0.1"
5252
thiserror = "2"
5353
tracing = "0.1"
5454

55-
htsget-config = { version = "0.13.0", path = "../htsget-config", default-features = false }
55+
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
5656
htsget-search = { version = "0.10.0", path = "../htsget-search", default-features = false }
5757
htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false }
5858

htsget-config/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.14.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.13.0...htsget-config-v0.14.0) - 2025-02-18
10+
11+
### Other
12+
13+
- [**breaking**] update deps, remove `ParsedHeader` as it's unused, and don't publish htsget-test
14+
915
## [0.13.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.12.0...htsget-config-v0.13.0) - 2025-01-24
1016

1117
### Added

htsget-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-config"
3-
version = "0.13.0"
3+
version = "0.14.0"
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"

htsget-http/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ serde = { version = "1", features = ["derive"] }
2222
serde_json = "1"
2323
http = "1"
2424
htsget-search = { version = "0.10.0", path = "../htsget-search", default-features = false }
25-
htsget-config = { version = "0.13.0", path = "../htsget-config", default-features = false }
25+
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"] }
2828
tracing = "0.1"

htsget-lambda/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ rustls = "0.23"
2626
lambda_http = { version = "0.14" }
2727
tracing = "0.1"
2828

29-
htsget-config = { version = "0.13.0", path = "../htsget-config", default-features = false }
29+
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
3030
htsget-http = { version = "0.5.2", path = "../htsget-http", default-features = false }
3131
htsget-axum = { version = "0.3.0", path = "../htsget-axum", default-features = false }

htsget-search/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ noodles = { version = "0.87", features = ["async", "core", "bgzf", "bam", "bcf",
4343
http = "1"
4444
tracing = "0.1"
4545

46-
htsget-config = { version = "0.13.0", path = "../htsget-config", default-features = false }
46+
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
4747
htsget-storage = { version = "0.3.0", path = "../htsget-storage", default-features = false }
4848

4949
[dev-dependencies]

htsget-storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ thiserror = "2"
5858
tracing = "0.1"
5959
base64 = "0.22"
6060

61-
htsget-config = { version = "0.13.0", path = "../htsget-config", default-features = false }
61+
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false }
6262

6363
[dev-dependencies]
6464
tower-http = { version = "0.6", features = ["fs"] }

htsget-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ default = []
4040

4141
[dependencies]
4242
# Server tests dependencies
43-
htsget-config = { version = "0.13.0", path = "../htsget-config", default-features = false, optional = true }
43+
htsget-config = { version = "0.14.0", path = "../htsget-config", default-features = false, optional = true }
4444

4545
noodles = { version = "0.87", optional = true, features = ["async", "bgzf", "vcf", "cram", "bcf", "bam", "fasta"] }
4646

0 commit comments

Comments
 (0)