diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bbd332c..37ff64ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.1.4] - 2026-02-09 + +### Highlights + +- jq builtin now supports file arguments + +### What's Changed + +* fix(builtins): support file arguments in jq builtin ([#183](https://github.com/everruns/bashkit/pull/183)) by @chaliy +* chore(ci): split monolithic check job and move heavy analysis to nightly ([#182](https://github.com/everruns/bashkit/pull/182)) by @chaliy +* refactor(test): drop 'new_' prefix from curl/wget flag test modules ([#181](https://github.com/everruns/bashkit/pull/181)) by @chaliy +* fix(publish): remove unpublished monty git dep for v0.1.3 ([#180](https://github.com/everruns/bashkit/pull/180)) by @chaliy +* fix(publish): remove cargo dep on unpublished bashkit-monty-worker by @chaliy + +**Full Changelog**: https://github.com/everruns/bashkit/compare/v0.1.3...v0.1.4 + ## [0.1.3] - 2026-02-08 ### Highlights diff --git a/Cargo.toml b/Cargo.toml index cdfb4b41..6da2e65f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "MIT" authors = ["Everruns"] diff --git a/crates/bashkit-cli/Cargo.toml b/crates/bashkit-cli/Cargo.toml index 85597b22..91ad8bbb 100644 --- a/crates/bashkit-cli/Cargo.toml +++ b/crates/bashkit-cli/Cargo.toml @@ -19,7 +19,7 @@ path = "src/main.rs" doc = false # Disable to avoid collision with bashkit library docs [dependencies] -bashkit = { path = "../bashkit", version = "0.1.2" } +bashkit = { path = "../bashkit", version = "0.1.4" } tokio.workspace = true clap.workspace = true anyhow.workspace = true