Skip to content

Commit 6a42632

Browse files
committed
chore: bump version for release.
1 parent bbed6b1 commit 6a42632

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

crankshaft-docker/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## Unreleased
1010

11+
## 0.4.0 - 01-12-2026
12+
1113
### Revised
1214

1315
* Added retry logic with exponential backoff to Docker operations to handle

crankshaft-docker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "crankshaft-docker"
33
description = "Docker facilities for Crankshaft"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
license.workspace = true
66
edition.workspace = true
77
authors.workspace = true

crankshaft-engine/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,17 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## Unreleased
1010

11+
## 0.8.0 - 01-12-2026
12+
1113
### Fixed
1214

1315
* Removed `todo!` in TES backend when volumes was non-empty ([#71](https://github.com/stjude-rust-labs/crankshaft/pull/71)).
1416

17+
### Crates
18+
19+
* Updated `crankshaft-docker` to v0.4.0
20+
([release](https://github.com/stjude-rust-labs/crankshaft/releases/tag/crankshaft-docker-v0.4.0)).
21+
1522
## 0.7.0 - 11-24-2025
1623

1724
### Added

crankshaft-engine/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "crankshaft-engine"
33
description = "The core engine that comprises Crankshaft"
4-
version = "0.7.0"
4+
version = "0.8.0"
55
license.workspace = true
66
edition.workspace = true
77
authors.workspace = true
@@ -19,7 +19,7 @@ async-trait.workspace = true
1919
bollard.workspace = true
2020
bon.workspace = true
2121
crankshaft-config = { path = "../crankshaft-config", version = "0.6.0" }
22-
crankshaft-docker = { path = "../crankshaft-docker", version = "0.3.0" }
22+
crankshaft-docker = { path = "../crankshaft-docker", version = "0.4.0" }
2323
crankshaft-events = { path = "../crankshaft-events", version = "0.1.0" }
2424
crankshaft-monitor = { path = "../crankshaft-monitor", version = "0.1.0", optional = true }
2525
futures.workspace = true

crankshaft/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## Unreleased
1010

11+
## 0.8.0 - 01-12-2026
12+
1113
### Changed
1214

1315
* Updated lints and MSRV for Rust 2024 ([#66](https://github.com/stjude-rust-labs/crankshaft/pull/66)).
1416

17+
### Crates
18+
19+
* Updated `crankshaft-docker` to v0.4.0
20+
([release](https://github.com/stjude-rust-labs/crankshaft/releases/tag/crankshaft-docker-v0.4.0)).
21+
* Updated `crankshaft-engine` to v0.8.0
22+
([release](https://github.com/stjude-rust-labs/crankshaft/releases/tag/crankshaft-engine-v0.8.0)).
23+
1524
## 0.7.0 - 11-24-2025
1625

1726
### Crates

crankshaft/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "crankshaft"
33
description = "A headless task execution engine that supports local, cloud, and HPC"
4-
version = "0.7.0"
4+
version = "0.8.0"
55
license.workspace = true
66
edition.workspace = true
77
authors.workspace = true
@@ -19,8 +19,8 @@ monitoring = ["dep:crankshaft-engine", "crankshaft-engine/monitoring"]
1919

2020
[dependencies]
2121
crankshaft-config = { path = "../crankshaft-config", version = "0.6.0", optional = true }
22-
crankshaft-docker = { path = "../crankshaft-docker", version = "0.3.0", optional = true }
23-
crankshaft-engine = { path = "../crankshaft-engine", version = "0.7.0", optional = true }
22+
crankshaft-docker = { path = "../crankshaft-docker", version = "0.4.0", optional = true }
23+
crankshaft-engine = { path = "../crankshaft-engine", version = "0.8.0", optional = true }
2424
crankshaft-events = { path = "../crankshaft-events", version = "0.1.0", optional = true }
2525

2626
[lints]

0 commit comments

Comments
 (0)