Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpinder committed Apr 22, 2024
1 parent c599138 commit 8f81120
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 25 deletions.
63 changes: 50 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand All @@ -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

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion recipe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

Expand Down
4 changes: 2 additions & 2 deletions template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8f81120

Please sign in to comment.