From 2661136e5252e2ac635be0d738c15e82248fb054 Mon Sep 17 00:00:00 2001 From: reuben olinsky Date: Tue, 23 Jul 2024 02:35:00 -0700 Subject: [PATCH] chore: prepare release (#135) --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 8 ++++---- brush-core/Cargo.toml | 4 ++-- brush-interactive/Cargo.toml | 6 +++--- brush-parser/Cargo.toml | 2 +- brush-shell/Cargo.toml | 8 ++++---- 6 files changed, 25 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8bf0f87..9301afe2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 All notable changes to this project will be documented in this file. +## [0.2.5] - 2024-07-23 + +### 🐛 Bug Fixes + +- Build error outside git ([#134](https://github.com/reubeno/brush/pull/134)) + +### Build + +- *(deps)* Bump the cargo group with 2 updates ([#133](https://github.com/reubeno/brush/pull/133)) + + ## [0.2.4] - 2024-07-19 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index b8acfe12..220aa188 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -244,7 +244,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "brush-core" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "async-recursion", @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "brush-interactive" -version = "0.2.4" +version = "0.2.5" dependencies = [ "brush-core", "brush-parser", @@ -300,7 +300,7 @@ dependencies = [ [[package]] name = "brush-parser" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "arbitrary", @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "brush-shell" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "assert_cmd", diff --git a/brush-core/Cargo.toml b/brush-core/Cargo.toml index 08a4b994..dd299386 100644 --- a/brush-core/Cargo.toml +++ b/brush-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "brush-core" description = "Reusable core of a POSIX/bash shell (used by brush-shell)" -version = "0.2.4" +version = "0.2.5" categories.workspace = true edition.workspace = true keywords.workspace = true @@ -19,7 +19,7 @@ workspace = true [dependencies] async-recursion = "1.1.0" async-trait = "0.1.81" -brush-parser = { version = "^0.2.4", path = "../brush-parser" } +brush-parser = { version = "^0.2.5", path = "../brush-parser" } cached = "0.53.0" cfg-if = "1.0.0" # N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version. diff --git a/brush-interactive/Cargo.toml b/brush-interactive/Cargo.toml index d7a48016..ed711aba 100644 --- a/brush-interactive/Cargo.toml +++ b/brush-interactive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "brush-interactive" description = "Interactive layer of brush-shell" -version = "0.2.4" +version = "0.2.5" authors.workspace = true categories.workspace = true edition.workspace = true @@ -18,8 +18,8 @@ bench = false workspace = true [dependencies] -brush-parser = { version = "^0.2.4", path = "../brush-parser" } -brush-core = { version = "^0.2.4", path = "../brush-core" } +brush-parser = { version = "^0.2.5", path = "../brush-parser" } +brush-core = { version = "^0.2.5", path = "../brush-core" } thiserror = "1.0.62" tracing = "0.1.40" diff --git a/brush-parser/Cargo.toml b/brush-parser/Cargo.toml index c25612d6..f5b91bda 100644 --- a/brush-parser/Cargo.toml +++ b/brush-parser/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "brush-parser" description = "POSIX/bash shell tokenizer and parsers (used by brush-shell)" -version = "0.2.4" +version = "0.2.5" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/brush-shell/Cargo.toml b/brush-shell/Cargo.toml index bb22feba..25766617 100644 --- a/brush-shell/Cargo.toml +++ b/brush-shell/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "brush-shell" description = "Rust-implemented shell focused on POSIX and bash compatibility" -version = "0.2.4" +version = "0.2.5" authors.workspace = true categories.workspace = true edition.workspace = true @@ -26,9 +26,9 @@ workspace = true [dependencies] async-trait = "0.1.80" -brush-interactive = { version = "^0.2.4", path = "../brush-interactive" } -brush-parser = { version = "^0.2.4", path = "../brush-parser" } -brush-core = { version = "^0.2.4", path = "../brush-core" } +brush-interactive = { version = "^0.2.5", path = "../brush-interactive" } +brush-parser = { version = "^0.2.5", path = "../brush-parser" } +brush-core = { version = "^0.2.5", path = "../brush-core" } # N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version. clap = { version = "=4.4.18", features = ["derive", "wrap_help"] } const_format = "0.2.32"