diff --git a/CHANGELOG.md b/CHANGELOG.md index f301eb3..3e7f9a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,40 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.3.10 (2024-01-04) + +### Bug Fixes + + - stop possible from-file, type module collision in template + +### Refactor + + - Use askama crate for compile-time template type checking + +### Commit Statistics + + + + - 2 commits contributed to the release. + - 2 days passed between releases. + - 2 commits were understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - Stop possible from-file, type module collision in template (dfb3154) + - Use askama crate for compile-time template type checking (d663b75) +
+ ## v0.3.9 (2024-01-01) + + ### Bug Fixes - clippy error for image_tag @@ -21,7 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - 4 commits contributed to the release over the course of 1 calendar day. + - 5 commits contributed to the release over the course of 1 calendar day. - 1 day passed between releases. - 4 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -33,6 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Release blue-build v0.3.9 (039c5f9) - Inefficiency in generated Containerfile (938ddae) - Clippy error for image_tag (7dd3a8f) - Allow image_version to be a String (ca95e32) diff --git a/Cargo.lock b/Cargo.lock index 1ba5cf1..05da282 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,7 +149,7 @@ checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" [[package]] name = "blue-build" -version = "0.3.9" +version = "0.3.10" dependencies = [ "anyhow", "askama", diff --git a/Cargo.toml b/Cargo.toml index 5dbb408..72e68bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blue-build" -version = "0.3.9" +version = "0.3.10" edition = "2021" description = "A CLI tool built for creating Containerfile templates based on the Ublue Community Project" repository = "https://gitlab.com/wunker-bunker/blue-build"