Skip to content

Commit 6add82f

Browse files
authored
chore: prepare release (#138)
1 parent bf52bcf commit 6add82f

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
All notable changes to this project will be documented in this file.
77

8+
## [0.2.6] - 2024-07-23
9+
10+
### 🐛 Bug Fixes
11+
12+
- Correct relative path resolution cases
13+
- Relative path completion fixes ([#137](https://github.com/reubeno/brush/pull/137))
14+
15+
<!-- generated by git-cliff -->
816
## [0.2.5] - 2024-07-23
917

1018
### 🐛 Bug Fixes

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

brush-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-core"
33
description = "Reusable core of a POSIX/bash shell (used by brush-shell)"
4-
version = "0.2.5"
4+
version = "0.2.6"
55
categories.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

brush-interactive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-interactive"
33
description = "Interactive layer of brush-shell"
4-
version = "0.2.5"
4+
version = "0.2.6"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -19,7 +19,7 @@ workspace = true
1919

2020
[dependencies]
2121
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
22-
brush-core = { version = "^0.2.5", path = "../brush-core" }
22+
brush-core = { version = "^0.2.6", path = "../brush-core" }
2323
thiserror = "1.0.62"
2424
tracing = "0.1.40"
2525

brush-shell/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-shell"
33
description = "Rust-implemented shell focused on POSIX and bash compatibility"
4-
version = "0.2.5"
4+
version = "0.2.6"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -26,9 +26,9 @@ workspace = true
2626

2727
[dependencies]
2828
async-trait = "0.1.80"
29-
brush-interactive = { version = "^0.2.5", path = "../brush-interactive" }
29+
brush-interactive = { version = "^0.2.6", path = "../brush-interactive" }
3030
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
31-
brush-core = { version = "^0.2.5", path = "../brush-core" }
31+
brush-core = { version = "^0.2.6", path = "../brush-core" }
3232
# N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version.
3333
clap = { version = "=4.4.18", features = ["derive", "wrap_help"] }
3434
const_format = "0.2.32"

0 commit comments

Comments
 (0)