Skip to content

Commit bd05193

Browse files
committed
release: bump version to 0.10.0.
1 parent f8a143f commit bd05193

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.10.0 - 01-07-2026
11+
12+
### Changed
13+
14+
- Bumped MSRV to 1.85.1 and moved crate to Rust 2024 ([#23](https://github.com/stjude-rust-labs/tes/pull/23)).
15+
1016
### Fixed
1117

1218
- Fixed incorrect type for the response of `cancel_task` ([#22](https://github.com/stjude-rust-labs/tes/pull/22)).

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "tes"
33
description = "A crate for working with the Task Execution Service (TES) specification"
4-
version = "0.9.0"
5-
edition = "2021"
4+
version = "0.10.0"
5+
edition = "2024"
66
authors = ["The St. Jude Rust Labs developers"]
77
license = "MIT OR Apache-2.0"
88
homepage = "https://github.com/stjude-rust-labs/tes"
99
repository = "https://github.com/stjude-rust-labs/tes"
10-
rust-version = "1.83.0"
10+
rust-version = "1.85.1"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -29,12 +29,12 @@ types = ["dep:url"]
2929

3030
[dependencies]
3131
chrono = { version = "0.4.41", features = ["serde"] }
32-
reqwest = { version = "0.12.23", features = ["json"], optional = true }
32+
reqwest = { version = "0.13.1", features = ["json"], optional = true }
3333
serde = { version = "1.0.219", features = ["derive"], optional = true }
3434
serde_json = { version = "1.0.143" }
3535
serde_url_params = { version = "0.2.1", optional = true }
3636
thiserror = "2.0.15"
37-
tokio-retry2 = { version = "0.5.7", optional = true }
37+
tokio-retry2 = { version = "0.6.0", optional = true }
3838
tracing = { version = "0.1.41", optional = true }
3939
url = { version = "2.5.4", features = ["serde"], optional = true }
4040

0 commit comments

Comments
 (0)