diff --git a/CHANGELOG.md b/CHANGELOG.md index 025e5eb..d8f5f4e 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/Cargo.lock b/Cargo.lock index a866442..43c8d10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 496ac3a..43a7b25 100644 --- a/Cargo.toml +++ b/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" diff --git a/install.sh b/install.sh index bfb9796..752dcd7 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -euo pipefail -VERSION=v0.9.1 +VERSION=v0.9.2 # Container runtime function cr() { diff --git a/process/Cargo.toml b/process/Cargo.toml index 0b9a17c..e573f8d 100644 --- a/process/Cargo.toml +++ b/process/Cargo.toml @@ -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 diff --git a/recipe/Cargo.toml b/recipe/Cargo.toml index 5b7f453..2e1b0db 100644 --- a/recipe/Cargo.toml +++ b/recipe/Cargo.toml @@ -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 diff --git a/template/Cargo.toml b/template/Cargo.toml index 3162a5b..de4c949 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -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