Skip to content

Commit c24f57c

Browse files
committed
Merge branch 'main' of https://github.com/stackabletech/docker-images into feat/npm-sbom-frontend
2 parents ae41590 + 7ba878e commit c24f57c

4 files changed

Lines changed: 28 additions & 15 deletions

File tree

Cargo.lock

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

rust/boil/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
All notable changes to this project will be documented in this file.
66

7+
## [0.3.1] - 2026-08-18
8+
9+
[See complete diff](https://github.com/stackabletech/docker-images/compare/boil-0.3.0..boil-0.3.1)
10+
11+
### Bug Fixes
12+
13+
- Include prerelease data in floating tag ([#1601](https://github.com/stackabletech/docker-images/pull/1601)).
14+
715
## [0.3.0] - 2026-08-17
816

917
[See complete diff](https://github.com/stackabletech/docker-images/compare/boil-0.2.3-rc.1..boil-0.3.0)

rust/boil/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boil"
3-
version = "0.3.0" # Managed by .scripts/release_boil.sh
3+
version = "0.3.1" # Managed by .scripts/release_boil.sh
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true

rust/boil/src/utils.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ impl VersionExt for semver::Version {
3535
if self.is_floating() {
3636
self.to_string()
3737
} else {
38-
format!("{major}.{minor}", major = self.major, minor = self.minor)
38+
format!(
39+
"{major}.{minor}-{pre}",
40+
major = self.major,
41+
minor = self.minor,
42+
pre = self.pre
43+
)
3944
}
4045
}
4146
}

0 commit comments

Comments
 (0)