chore: Release
This commit is contained in:
parent
a3c5b6f06b
commit
eddbcb48f7
7 changed files with 32 additions and 13 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
|
@ -2,6 +2,24 @@
|
||||||
|
|
||||||
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.8.8] - 2024-05-14
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Add driver args to rebase/upgrade command
|
||||||
|
- Make docker pull latest images when building
|
||||||
|
- Don't use '' in format arg
|
||||||
|
- Create lock on docker setup to prevent race conditions
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Create a bluebuild buildx runner
|
||||||
|
|
||||||
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Ensure cargo installs use version for build scripts image
|
||||||
|
- Cleanup install script to instead create the container without running it
|
||||||
|
|
||||||
## [0.8.7] - 2024-05-05
|
## [0.8.7] - 2024-05-05
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
@ -19,6 +37,7 @@ All notable changes to this project will be documented in this file.
|
||||||
- Allow tests to pass due to upstream akmods issues
|
- Allow tests to pass due to upstream akmods issues
|
||||||
- Remove title case (#177)
|
- Remove title case (#177)
|
||||||
- Fix release replacements
|
- Fix release replacements
|
||||||
|
- Release
|
||||||
|
|
||||||
## [0.8.6] - 2024-04-29
|
## [0.8.6] - 2024-04-29
|
||||||
|
|
||||||
|
|
|
||||||
8
Cargo.lock
generated
8
Cargo.lock
generated
|
|
@ -188,7 +188,7 @@ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build"
|
name = "blue-build"
|
||||||
version = "0.8.7"
|
version = "0.8.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"blue-build-recipe",
|
"blue-build-recipe",
|
||||||
|
|
@ -222,7 +222,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build-recipe"
|
name = "blue-build-recipe"
|
||||||
version = "0.8.7"
|
version = "0.8.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"blue-build-utils",
|
"blue-build-utils",
|
||||||
|
|
@ -237,7 +237,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build-template"
|
name = "blue-build-template"
|
||||||
version = "0.8.7"
|
version = "0.8.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"askama",
|
"askama",
|
||||||
"blue-build-recipe",
|
"blue-build-recipe",
|
||||||
|
|
@ -252,7 +252,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build-utils"
|
name = "blue-build-utils"
|
||||||
version = "0.8.7"
|
version = "0.8.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"atty",
|
"atty",
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||||
repository = "https://github.com/blue-build/cli"
|
repository = "https://github.com/blue-build/cli"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
categories = ["command-line-utilities"]
|
categories = ["command-line-utilities"]
|
||||||
version = "0.8.7"
|
version = "0.8.8"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
|
@ -53,9 +53,9 @@ pre-release-replacements = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
blue-build-recipe = { version = "=0.8.7", path = "./recipe" }
|
blue-build-recipe = { version = "=0.8.8", path = "./recipe" }
|
||||||
blue-build-template = { version = "=0.8.7", path = "./template" }
|
blue-build-template = { version = "=0.8.8", path = "./template" }
|
||||||
blue-build-utils = { version = "=0.8.7", path = "./utils" }
|
blue-build-utils = { version = "=0.8.8", path = "./utils" }
|
||||||
clap-verbosity-flag = "2"
|
clap-verbosity-flag = "2"
|
||||||
clap_complete = "4"
|
clap_complete = "4"
|
||||||
clap_complete_nushell = "4"
|
clap_complete_nushell = "4"
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@ A CLI tool built for creating Containerfile templates based on the Ublue Communi
|
||||||
This is the best way to install as it gives you the opportunity to build for your specific environment.
|
This is the best way to install as it gives you the opportunity to build for your specific environment.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cargo install --git https://github.com/blue-build/cli.git --tag v0.8.7
|
cargo install --git https://github.com/blue-build/cli.git --tag v0.8.8
|
||||||
```
|
```
|
||||||
|
|
||||||
### Podman/Docker
|
### Podman/Docker
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
VERSION=v0.8.7
|
VERSION=v0.8.8
|
||||||
|
|
||||||
# Container runtime
|
# Container runtime
|
||||||
function cr() {
|
function cr() {
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ license.workspace = true
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
blue-build-utils = { version = "=0.8.7", path = "../utils" }
|
blue-build-utils = { version = "=0.8.8", path = "../utils" }
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
indexmap = { version = "2", features = ["serde"] }
|
indexmap = { version = "2", features = ["serde"] }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,8 @@ license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
askama = { version = "0.12", features = ["serde-json", "serde-yaml"] }
|
askama = { version = "0.12", features = ["serde-json", "serde-yaml"] }
|
||||||
blue-build-recipe = { version = "=0.8.7", path = "../recipe" }
|
blue-build-recipe = { version = "=0.8.8", path = "../recipe" }
|
||||||
blue-build-utils = { version = "=0.8.7", path = "../utils" }
|
blue-build-utils = { version = "=0.8.8", path = "../utils" }
|
||||||
|
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue