Skip to content

Commit

Permalink
chore: prepare release (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
reubeno authored Jul 23, 2024
1 parent bf52bcf commit 6add82f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))

<!-- generated by git-cliff -->
## [0.2.5] - 2024-07-23

### 🐛 Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion brush-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions brush-interactive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"

Expand Down
6 changes: 3 additions & 3 deletions brush-shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 6add82f

Please sign in to comment.