Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpinder committed Mar 27, 2024
1 parent e3ca95d commit 8050ce7
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 28 deletions.
72 changes: 59 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,51 @@

All notable changes to this project will be documented in this file.

## [0.8.3] - 2024-03-27

### Bug Fixes

- Checkout proper versions when building on main vs a PR
- Use container skopeo (#110)
- Remove tmpfs for /tmp (#123)
- Allow docker driver to properly use cache (#126)
- Allow special characters for export script (#128)
- Copy bins and keys with mounts for ostree commit (#132)
- Set gzip to default compression format
- Create dir for keys and bins in case they don't exist
- Allow user supplied registry to be set in the template (#135)
- Unable to use SHELL with podman, encapsulate commands in /bin/bash -c
- Put export script in own image
- Remove docker syntax marker
- Pulling wrong exports image

### Features

- Revert to bash files module (#125)
- Support `zstd` compression (#134)
- Improve logging output (#139)

### Miscellaneous Tasks

- Update workspace dependency versions
- Setup build concurrency to reduce number of simultaneous builds on a PR
- Adjust readme path in files module.yml
- Fix readme path for containerfile module in module.yml
- Add version checks for upstream tools (#121)
- Don't build nightly for now
- Separate nightly build to not run in CI for now
- Remove builtin-podman code
- Enable cache builds on main branch
- Don't use docker driver for buildx job on main
- Update gitlab-ci section in README
- Add image source label for exports
- Use tag exports instead
- Fix build.yml

### Refactor

- Rename strategies to drivers

## [0.8.2] - 2024-03-09

### Bug Fixes
Expand All @@ -28,6 +73,7 @@ All notable changes to this project will be documented in this file.
- 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
- Prepare for v0.8.2 release

### Refactor

Expand Down Expand Up @@ -197,9 +243,21 @@ 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-24
## [0.5.2] - 2024-01-22

### Bug Fixes

Expand All @@ -219,18 +277,6 @@ 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 @@ -36,7 +36,7 @@ module_name_repetitions = "allow"
[package]
name = "blue-build"
build = "build.rs"
version = "0.8.2"
version = "0.8.3"

edition.workspace = true
description.workspace = true
Expand All @@ -50,9 +50,9 @@ pre-release-replacements = [
]

[dependencies]
blue-build-recipe = { version = "=0.8.2", path = "./recipe" }
blue-build-template = { version = "=0.8.2", path = "./template" }
blue-build-utils = { version = "=0.8.2", path = "./utils" }
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" }
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.2
VERSION=v0.8.3

# We use sudo for podman so that we can copy directly into /usr/local/bin

Expand Down
4 changes: 2 additions & 2 deletions recipe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blue-build-recipe"
version = "0.8.2"
version = "0.8.3"
edition.workspace = true
description.workspace = true
repository.workspace = true
Expand All @@ -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.2", path = "../utils" }
blue-build-utils = { version = "=0.8.3", path = "../utils" }
chrono = "0.4"
indexmap = { version = "2", features = ["serde"] }

Expand Down
6 changes: 3 additions & 3 deletions template/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blue-build-template"
version = "0.8.2"
version = "0.8.3"
edition.workspace = true
description.workspace = true
repository.workspace = true
Expand All @@ -10,8 +10,8 @@ license.workspace = true

[dependencies]
askama = { version = "0.12", features = ["serde-json", "serde-yaml"] }
blue-build-recipe = { version = "=0.8.2", path = "../recipe" }
blue-build-utils = { version = "=0.8.2", path = "../utils" }
blue-build-recipe = { version = "=0.8.3", path = "../recipe" }
blue-build-utils = { version = "=0.8.3", path = "../utils" }

log.workspace = true
serde.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blue-build-utils"
version = "0.8.2"
version = "0.8.3"
edition.workspace = true
description.workspace = true
repository.workspace = true
Expand Down

0 comments on commit 8050ce7

Please sign in to comment.