chore: Release

This commit is contained in:
Gerald Pinder 2024-04-22 16:50:07 -04:00
parent c599138982
commit 8f811200aa
6 changed files with 62 additions and 25 deletions

View file

@ -2,6 +2,42 @@
All notable changes to this project will be documented in this file.
## [0.8.4] - 2024-04-22
### Bug Fixes
- Sign all images in manifest (#148)
- Use proper image URI for local rebasing
- Add test for rpm-ostree rebase (#161)
- Error if any module fails to deserialize (#163)
- Remove /var tmpfs
- Create /var/roothome to fix any issues with adding files to /root
- Create /var/lib/alternatives
- Give better errors for read_to_string
### Documentation
- Add distrobox installation tips (#146)
### Features
- Add driver selection args (#153)
- Squash builds (#155)
- Look for recipes in `./recipes/`, build files in `./files/`, and Containerfiles in `./containerfiles/` (#157)
### Miscellaneous Tasks
- Add MODULE_DIRECTORY env var (#142)
- Remove unused files module
- Put LABELS last since they cause cache miss with buildah
- Cleanup images and use hash for exports tag (#158)
- Update akmods module to account for upstream changes (#165)
- Prepare justfile for release
### README
- Add alpine distrobox and shell completions (#149)
## [0.8.3] - 2024-03-27
### Bug Fixes
@ -42,6 +78,7 @@ All notable changes to this project will be documented in this file.
- Add image source label for exports
- Use tag exports instead
- Fix build.yml
- Release
### Refactor
@ -243,21 +280,9 @@ All notable changes to this project will be documented in this file.
### Miscellaneous Tasks
- Create GitHub Workflow (#9)
- Don't build integration tests in +all
- Allow write for contents and id-token
- Allow workflow_dispatch on build
- Use docker/login-action@v3
- Set packages permissions to write
- Update README.md (#10)
- Use GHCR for install.sh (#11)
- Remove input for release
- Add CARGO_REGISTRY_TOKEN
- Fetch all to get history for changelog updates
- Allow write for id-token
- Bump version
## [0.5.2] - 2024-01-22
## [0.5.2] - 2024-01-24
### Bug Fixes
@ -277,6 +302,18 @@ All notable changes to this project will be documented in this file.
- Update Cargo.toml with new repo URL
- Manual bump of version
- Create GitHub Workflow (#9)
- Don't build integration tests in +all
- Allow write for contents and id-token
- Allow workflow_dispatch on build
- Use docker/login-action@v3
- Set packages permissions to write
- Update README.md (#10)
- Use GHCR for install.sh (#11)
- Remove input for release
- Add CARGO_REGISTRY_TOKEN
- Fetch all to get history for changelog updates
- Allow write for id-token
## [0.5.1] - 2024-01-22

8
Cargo.lock generated
View file

@ -156,7 +156,7 @@ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
[[package]]
name = "blue-build"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"anyhow",
"blue-build-recipe",
@ -190,7 +190,7 @@ dependencies = [
[[package]]
name = "blue-build-recipe"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"anyhow",
"blue-build-utils",
@ -205,7 +205,7 @@ dependencies = [
[[package]]
name = "blue-build-template"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"askama",
"blue-build-recipe",
@ -220,7 +220,7 @@ dependencies = [
[[package]]
name = "blue-build-utils"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"anyhow",
"chrono",

View file

@ -7,7 +7,7 @@ edition = "2021"
repository = "https://github.com/blue-build/cli"
license = "Apache-2.0"
categories = ["command-line-utilities"]
version = "0.8.3"
version = "0.8.4"
[workspace.dependencies]
anyhow = "1"
@ -51,9 +51,9 @@ pre-release-replacements = [
]
[dependencies]
blue-build-recipe = { version = "=0.8.3", path = "./recipe" }
blue-build-template = { version = "=0.8.3", path = "./template" }
blue-build-utils = { version = "=0.8.3", path = "./utils" }
blue-build-recipe = { version = "=0.8.4", path = "./recipe" }
blue-build-template = { version = "=0.8.4", path = "./template" }
blue-build-utils = { version = "=0.8.4", path = "./utils" }
clap = { version = "4", features = ["derive", "cargo", "unicode"] }
clap-verbosity-flag = "2"
clap_complete = "4"

View file

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

View file

@ -9,7 +9,7 @@ license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
blue-build-utils = { version = "=0.8.3", path = "../utils" }
blue-build-utils = { version = "=0.8.4", path = "../utils" }
chrono = "0.4"
indexmap = { version = "2", features = ["serde"] }

View file

@ -10,8 +10,8 @@ license.workspace = true
[dependencies]
askama = { version = "0.12", features = ["serde-json", "serde-yaml"] }
blue-build-recipe = { version = "=0.8.3", path = "../recipe" }
blue-build-utils = { version = "=0.8.3", path = "../utils" }
blue-build-recipe = { version = "=0.8.4", path = "../recipe" }
blue-build-utils = { version = "=0.8.4", path = "../utils" }
log.workspace = true
serde.workspace = true