chore: Prepare for v0.8.2 release

This commit is contained in:
Gerald Pinder 2024-03-08 19:37:08 -05:00
parent b169dbacbb
commit 8753e76eeb
7 changed files with 50 additions and 9 deletions

View file

@ -2,12 +2,53 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.8.2] - 2024-03-09
### Bug Fixes
- Filter out `/` in tag names (#94)
- Run `ostree container commit` at the end of each module run (#103)
- Add Nvidia Version to main base case (#107)
- Retry flag (#111)
- Add `org.opencontainers.image.source` LABEL for CI images (#113)
- Remove check for specific branches for signing (#114)
- Update path in comments and README (#115)
### Documentation
- Add install script from github option (#102)
### Features
- Add flakehub entry + nix flake (#109)
### Miscellaneous Tasks
- Add integration test for `disableuserns.sh` (#104)
- Update builds to use different satellites and have integration tests on their own job
- Move cargo release settings to root Cargo.toml
- Update crates to have their own versions starting at CLI version
### Refactor
- Update build command to use BuildStrategy (#88)
## [0.8.1] - 2024-02-26 ## [0.8.1] - 2024-02-26
### Bug Fixes ### Bug Fixes
- COPY yq for final image for modules to work
- COPY yq into final image for modules - COPY yq into final image for modules
### Miscellaneous Tasks
- Update modules.json to reflect change in dir layout
- Release blue-build version 0.8.1
### Refactor
- Move templates to their own crate (#83)
## [0.8.0] - 2024-02-25 ## [0.8.0] - 2024-02-25
### Bug Fixes ### Bug Fixes

8
Cargo.lock generated
View file

@ -278,7 +278,7 @@ dependencies = [
[[package]] [[package]]
name = "blue-build" name = "blue-build"
version = "0.8.1" version = "0.8.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"blue-build-recipe", "blue-build-recipe",
@ -315,7 +315,7 @@ dependencies = [
[[package]] [[package]]
name = "blue-build-recipe" name = "blue-build-recipe"
version = "0.8.1" version = "0.8.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"blue-build-utils", "blue-build-utils",
@ -331,7 +331,7 @@ dependencies = [
[[package]] [[package]]
name = "blue-build-template" name = "blue-build-template"
version = "0.8.1" version = "0.8.2"
dependencies = [ dependencies = [
"askama", "askama",
"blue-build-recipe", "blue-build-recipe",
@ -346,7 +346,7 @@ dependencies = [
[[package]] [[package]]
name = "blue-build-utils" name = "blue-build-utils"
version = "0.8.1" version = "0.8.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"directories", "directories",

View file

@ -31,7 +31,7 @@ nursery = "warn"
[package] [package]
name = "blue-build" name = "blue-build"
build = "build.rs" build = "build.rs"
version = "0.8.1" version = "0.8.2"
edition.workspace = true edition.workspace = true
description.workspace = true description.workspace = true

View file

@ -2,7 +2,7 @@
set -euo pipefail set -euo pipefail
VERSION=v0.8.1 VERSION=v0.8.2
# We use sudo for podman so that we can copy directly into /usr/local/bin # We use sudo for podman so that we can copy directly into /usr/local/bin

View file

@ -1,6 +1,6 @@
[package] [package]
name = "blue-build-recipe" name = "blue-build-recipe"
version = "0.8.1" version = "0.8.2"
edition.workspace = true edition.workspace = true
description.workspace = true description.workspace = true
repository.workspace = true repository.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "blue-build-template" name = "blue-build-template"
version = "0.8.1" version = "0.8.2"
edition.workspace = true edition.workspace = true
description.workspace = true description.workspace = true
repository.workspace = true repository.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "blue-build-utils" name = "blue-build-utils"
version = "0.8.1" version = "0.8.2"
edition.workspace = true edition.workspace = true
description.workspace = true description.workspace = true
repository.workspace = true repository.workspace = true