chore: Release blue-build version 0.7.1

This commit is contained in:
Gerald Pinder 2024-02-13 16:35:07 -05:00
parent b0d448ab66
commit 9d242e7c59
4 changed files with 27 additions and 3 deletions

View file

@ -2,6 +2,30 @@
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.7.1] - 2024-02-13
### Bug Fixes
- Remove deprecated bling `COPY` for `files` and `rpms` (#52)
- Only use earthly builder if token exists (#53)
### Features
- Use Multi-stage builds to prevent COPY for modules and config (#54)
- Alias update for upgrade subcommand (#60)
### Miscellaneous Tasks
- Update /Containerfile in .gitignore
- Create base integration test setup (#55)
- Remove nightly flags
- Rename registry-path arg to registry-namespace but keep previous as alias
- Add cargo release files
### Refactor
- Enable clippy nursery lint
## [0.7.0] - 2024-02-07 ## [0.7.0] - 2024-02-07
### Features ### Features

2
Cargo.lock generated
View file

@ -278,7 +278,7 @@ dependencies = [
[[package]] [[package]]
name = "blue-build" name = "blue-build"
version = "0.7.0" version = "0.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"askama", "askama",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "blue-build" name = "blue-build"
version = "0.7.0" version = "0.7.1"
edition = "2021" edition = "2021"
description = "A CLI tool built for creating Containerfile templates based on the Ublue Community Project" description = "A CLI tool built for creating Containerfile templates based on the Ublue Community Project"
repository = "https://github.com/blue-build/cli" repository = "https://github.com/blue-build/cli"

View file

@ -2,7 +2,7 @@
set -euo pipefail set -euo pipefail
VERSION=v0.7.0 VERSION=v0.7.1
# 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