chore: Release
This commit is contained in:
parent
414c8546a0
commit
a1ab139728
7 changed files with 34 additions and 16 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -2,6 +2,23 @@
|
|||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [0.9.2] - 2025-01-05
|
||||
|
||||
### Features
|
||||
|
||||
- Add support for NuShell scripts
|
||||
- Support versioned modules
|
||||
- Add nushell completions
|
||||
|
||||
### Miscellaneous Tasks
|
||||
|
||||
- Update jsonschema
|
||||
- Fix clippy lints
|
||||
|
||||
### Refactor
|
||||
|
||||
- Make use of Reference to ensure typing
|
||||
|
||||
## [0.9.1] - 2024-12-22
|
||||
|
||||
### Bug Fixes
|
||||
|
|
@ -23,6 +40,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Use consistent syntax for getting information from os-release
|
||||
- Add Github Action auditing
|
||||
- Upgrade shadow-rs
|
||||
- Release
|
||||
|
||||
### Readme
|
||||
|
||||
|
|
|
|||
10
Cargo.lock
generated
10
Cargo.lock
generated
|
|
@ -351,7 +351,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
dependencies = [
|
||||
"blue-build-process-management",
|
||||
"blue-build-recipe",
|
||||
|
|
@ -395,7 +395,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-process-management"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"blue-build-utils",
|
||||
|
|
@ -433,7 +433,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-recipe"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
dependencies = [
|
||||
"blue-build-utils",
|
||||
"bon",
|
||||
|
|
@ -450,7 +450,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-template"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
dependencies = [
|
||||
"blue-build-recipe",
|
||||
"blue-build-utils",
|
||||
|
|
@ -464,7 +464,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-utils"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.22.1",
|
||||
|
|
|
|||
10
Cargo.toml
10
Cargo.toml
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
|||
repository = "https://github.com/blue-build/cli"
|
||||
license = "Apache-2.0"
|
||||
categories = ["command-line-utilities"]
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
|
||||
[workspace.dependencies]
|
||||
bon = "2"
|
||||
|
|
@ -63,10 +63,10 @@ pre-release-replacements = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
blue-build-recipe = { version = "=0.9.1", path = "./recipe" }
|
||||
blue-build-template = { version = "=0.9.1", path = "./template" }
|
||||
blue-build-utils = { version = "=0.9.1", path = "./utils" }
|
||||
blue-build-process-management = { version = "=0.9.1", path = "./process" }
|
||||
blue-build-recipe = { version = "=0.9.2", path = "./recipe" }
|
||||
blue-build-template = { version = "=0.9.2", path = "./template" }
|
||||
blue-build-utils = { version = "=0.9.2", path = "./utils" }
|
||||
blue-build-process-management = { version = "=0.9.2", path = "./process" }
|
||||
clap-verbosity-flag = "3"
|
||||
clap_complete = "4"
|
||||
clap_complete_nushell = "4"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -euo pipefail
|
||||
|
||||
VERSION=v0.9.1
|
||||
VERSION=v0.9.2
|
||||
|
||||
# Container runtime
|
||||
function cr() {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ path = "process.rs"
|
|||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
blue-build-utils = { version = "=0.9.1", path = "../utils" }
|
||||
blue-build-utils = { version = "=0.9.2", path = "../utils" }
|
||||
indicatif-log-bridge = "0.2"
|
||||
lenient_semver = "0.4"
|
||||
log4rs = { version = "1", features = ["background_rotation"] }
|
||||
|
|
@ -46,7 +46,7 @@ uuid.workspace = true
|
|||
|
||||
[dev-dependencies]
|
||||
rstest.workspace = true
|
||||
blue-build-utils = { version = "=0.9.1", path = "../utils", features = ["test"] }
|
||||
blue-build-utils = { version = "=0.9.2", path = "../utils", features = ["test"] }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
|
|||
|
|
@ -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.9.1", path = "../utils" }
|
||||
blue-build-utils = { version = "=0.9.2", path = "../utils" }
|
||||
|
||||
colored.workspace = true
|
||||
log.workspace = true
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ license.workspace = true
|
|||
|
||||
[dependencies]
|
||||
rinja = { version = "0.3", features = ["serde_json"] }
|
||||
blue-build-recipe = { version = "=0.9.1", path = "../recipe" }
|
||||
blue-build-utils = { version = "=0.9.1", path = "../utils" }
|
||||
blue-build-recipe = { version = "=0.9.2", path = "../recipe" }
|
||||
blue-build-utils = { version = "=0.9.2", path = "../utils" }
|
||||
|
||||
chrono.workspace = true
|
||||
log.workspace = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue