From 6add82f1dfae319d7d365c5d521fb703eeec4a59 Mon Sep 17 00:00:00 2001 From: reuben olinsky Date: Tue, 23 Jul 2024 13:56:26 -0700 Subject: [PATCH] chore: prepare release (#138) --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 6 +++--- brush-core/Cargo.toml | 2 +- brush-interactive/Cargo.toml | 4 ++-- brush-shell/Cargo.toml | 6 +++--- 5 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9301afe2..87bf8aa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.6] - 2024-07-23 + +### 🐛 Bug Fixes + +- Correct relative path resolution cases +- Relative path completion fixes ([#137](https://github.com/reubeno/brush/pull/137)) + + ## [0.2.5] - 2024-07-23 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 220aa188..6e58e6bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -244,7 +244,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "brush-core" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "async-recursion", @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "brush-interactive" -version = "0.2.5" +version = "0.2.6" dependencies = [ "brush-core", "brush-parser", @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "brush-shell" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "assert_cmd", diff --git a/brush-core/Cargo.toml b/brush-core/Cargo.toml index dd299386..84a31e03 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.5" +version = "0.2.6" categories.workspace = true edition.workspace = true keywords.workspace = true diff --git a/brush-interactive/Cargo.toml b/brush-interactive/Cargo.toml index ed711aba..6d99f6ca 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.5" +version = "0.2.6" authors.workspace = true categories.workspace = true edition.workspace = true @@ -19,7 +19,7 @@ workspace = true [dependencies] brush-parser = { version = "^0.2.5", path = "../brush-parser" } -brush-core = { version = "^0.2.5", path = "../brush-core" } +brush-core = { version = "^0.2.6", path = "../brush-core" } thiserror = "1.0.62" tracing = "0.1.40" diff --git a/brush-shell/Cargo.toml b/brush-shell/Cargo.toml index 25766617..89530e1c 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.5" +version = "0.2.6" 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.5", path = "../brush-interactive" } +brush-interactive = { version = "^0.2.6", path = "../brush-interactive" } brush-parser = { version = "^0.2.5", path = "../brush-parser" } -brush-core = { version = "^0.2.5", path = "../brush-core" } +brush-core = { version = "^0.2.6", 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"