chore: Release
This commit is contained in:
parent
9dd1ec90f4
commit
b2aff68741
6 changed files with 33 additions and 12 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -2,6 +2,26 @@
|
|||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [0.8.10] - 2024-05-29
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Allow both files or config directory to not exist (#185)
|
||||
- Remove extra setup call
|
||||
- Remove hard requirement for login creds to be able to push (#187)
|
||||
|
||||
### Features
|
||||
|
||||
- Stages (#173)
|
||||
|
||||
### Miscellaneous Tasks
|
||||
|
||||
- Don't use satellites for integration tests
|
||||
|
||||
### Refactor
|
||||
|
||||
- [**breaking**] Rename `template` to `generate` and move `rebase/upgrade` under `switch` (#116)
|
||||
|
||||
## [0.8.9] - 2024-05-17
|
||||
|
||||
### Bug Fixes
|
||||
|
|
@ -18,6 +38,7 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
- Fix checkout for podman-build
|
||||
- Remove a pre-release-replacement
|
||||
- Release
|
||||
|
||||
## [0.8.8] - 2024-05-14
|
||||
|
||||
|
|
|
|||
8
Cargo.lock
generated
8
Cargo.lock
generated
|
|
@ -188,7 +188,7 @@ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
|
|||
|
||||
[[package]]
|
||||
name = "blue-build"
|
||||
version = "0.8.9"
|
||||
version = "0.8.10"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"blue-build-recipe",
|
||||
|
|
@ -224,7 +224,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-recipe"
|
||||
version = "0.8.9"
|
||||
version = "0.8.10"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"blue-build-utils",
|
||||
|
|
@ -240,7 +240,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-template"
|
||||
version = "0.8.9"
|
||||
version = "0.8.10"
|
||||
dependencies = [
|
||||
"askama",
|
||||
"blue-build-recipe",
|
||||
|
|
@ -255,7 +255,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-utils"
|
||||
version = "0.8.9"
|
||||
version = "0.8.10"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atty",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
|||
repository = "https://github.com/blue-build/cli"
|
||||
license = "Apache-2.0"
|
||||
categories = ["command-line-utilities"]
|
||||
version = "0.8.9"
|
||||
version = "0.8.10"
|
||||
|
||||
[workspace.dependencies]
|
||||
anyhow = "1"
|
||||
|
|
@ -53,9 +53,9 @@ pre-release-replacements = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
blue-build-recipe = { version = "=0.8.9", path = "./recipe" }
|
||||
blue-build-template = { version = "=0.8.9", path = "./template" }
|
||||
blue-build-utils = { version = "=0.8.9", path = "./utils" }
|
||||
blue-build-recipe = { version = "=0.8.10", path = "./recipe" }
|
||||
blue-build-template = { version = "=0.8.10", path = "./template" }
|
||||
blue-build-utils = { version = "=0.8.10", path = "./utils" }
|
||||
clap-verbosity-flag = "2"
|
||||
clap_complete = "4"
|
||||
clap_complete_nushell = "4"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -euo pipefail
|
||||
|
||||
VERSION=v0.8.9
|
||||
VERSION=v0.8.10
|
||||
|
||||
# Container runtime
|
||||
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
|
||||
|
||||
[dependencies]
|
||||
blue-build-utils = { version = "=0.8.9", path = "../utils" }
|
||||
blue-build-utils = { version = "=0.8.10", path = "../utils" }
|
||||
|
||||
anyhow.workspace = true
|
||||
chrono.workspace = true
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ license.workspace = true
|
|||
|
||||
[dependencies]
|
||||
askama = { version = "0.12", features = ["serde-json", "serde-yaml"] }
|
||||
blue-build-recipe = { version = "=0.8.9", path = "../recipe" }
|
||||
blue-build-utils = { version = "=0.8.9", path = "../utils" }
|
||||
blue-build-recipe = { version = "=0.8.10", path = "../recipe" }
|
||||
blue-build-utils = { version = "=0.8.10", path = "../utils" }
|
||||
|
||||
log.workspace = true
|
||||
serde.workspace = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue