diff --git a/CHANGELOG.md b/CHANGELOG.md index abc1651e..da5c349e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,53 @@ 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 ### Bug Fixes +- COPY yq for final image for modules to work - 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 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index a914f7c4..ff797c81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,7 +278,7 @@ dependencies = [ [[package]] name = "blue-build" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "blue-build-recipe", @@ -315,7 +315,7 @@ dependencies = [ [[package]] name = "blue-build-recipe" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "blue-build-utils", @@ -331,7 +331,7 @@ dependencies = [ [[package]] name = "blue-build-template" -version = "0.8.1" +version = "0.8.2" dependencies = [ "askama", "blue-build-recipe", @@ -346,7 +346,7 @@ dependencies = [ [[package]] name = "blue-build-utils" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "directories", diff --git a/Cargo.toml b/Cargo.toml index a6a95b7d..2fc865c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ nursery = "warn" [package] name = "blue-build" build = "build.rs" -version = "0.8.1" +version = "0.8.2" edition.workspace = true description.workspace = true diff --git a/install.sh b/install.sh index 5709ecbd..77db6ba7 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ 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 diff --git a/recipe/Cargo.toml b/recipe/Cargo.toml index 402266be..1d0d5b47 100644 --- a/recipe/Cargo.toml +++ b/recipe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blue-build-recipe" -version = "0.8.1" +version = "0.8.2" edition.workspace = true description.workspace = true repository.workspace = true diff --git a/template/Cargo.toml b/template/Cargo.toml index c09b6830..c83ad61e 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blue-build-template" -version = "0.8.1" +version = "0.8.2" edition.workspace = true description.workspace = true repository.workspace = true diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 0485fdf8..191ec230 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blue-build-utils" -version = "0.8.1" +version = "0.8.2" edition.workspace = true description.workspace = true repository.workspace = true