From fd13a167de4ce1e164866acff4c6a8d027425b7d Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 9 Feb 2026 05:35:32 +0000 Subject: [PATCH 1/2] chore(release): prepare v0.1.4 https://claude.ai/code/session_01TKZFHSKFQco1FNnJizaxaY --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- crates/bashkit-cli/Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bbd332c..0fab1e07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.1.4] - 2026-02-09 + +### Highlights + +- jq builtin now supports file arguments +- Publishing fixes for crates.io compatibility +- CI split into focused jobs with heavy analysis moved to nightly + +### 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 From f13017362f8c0043106a798b51020307883898ad Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 9 Feb 2026 05:40:38 +0000 Subject: [PATCH 2/2] chore(release): trim v0.1.4 highlights https://claude.ai/code/session_01TKZFHSKFQco1FNnJizaxaY --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fab1e07..37ff64ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,6 @@ ### Highlights - jq builtin now supports file arguments -- Publishing fixes for crates.io compatibility -- CI split into focused jobs with heavy analysis moved to nightly ### What's Changed