Skip to content

Commit c6c58db

Browse files
authored
chore: prepare release (#165)
1 parent 40f47b3 commit c6c58db

File tree

7 files changed

+44
-16
lines changed

7 files changed

+44
-16
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ 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.8] - 2024-09-17
9+
10+
### 🐛 Bug Fixes
11+
12+
- Implement ~USER syntax ([#160](https://github.com/reubeno/brush/pull/160))
13+
- Compgen needs to expand target arg ([#162](https://github.com/reubeno/brush/pull/162))
14+
- Do not invoke debug traps during completion funcs ([#163](https://github.com/reubeno/brush/pull/163))
15+
- Disable flaky test until it can be root-caused
16+
17+
### 📚 Documentation
18+
19+
- Generate man page via xtask ([#157](https://github.com/reubeno/brush/pull/157))
20+
21+
### ⚡ Performance
22+
23+
- Short-term optimization for common-case printf
24+
25+
### ⚙️ Miscellaneous Tasks
26+
27+
- Extract InteractiveShell as trait + refactor ([#159](https://github.com/reubeno/brush/pull/159))
28+
29+
### Build
30+
31+
- *(deps)* Bump tokio from 1.39.3 to 1.40.0 in the cargo group ([#156](https://github.com/reubeno/brush/pull/156))
32+
- *(deps)* Bump the cargo group with 6 updates ([#158](https://github.com/reubeno/brush/pull/158))
33+
- *(deps)* Bump the cargo group with 2 updates ([#161](https://github.com/reubeno/brush/pull/161))
34+
35+
<!-- generated by git-cliff -->
836
## [0.2.7] - 2024-09-01
937

1038
### 🚀 Features

Cargo.lock

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

brush-core/Cargo.toml

+2-2
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.7"
4+
version = "0.2.8"
55
categories.workspace = true
66
edition.workspace = true
77
keywords.workspace = true
@@ -19,7 +19,7 @@ workspace = true
1919
[dependencies]
2020
async-recursion = "1.1.0"
2121
async-trait = "0.1.82"
22-
brush-parser = { version = "^0.2.6", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.7", path = "../brush-parser" }
2323
cached = "0.53.0"
2424
cfg-if = "1.0.0"
2525
clap = { version = "4.5.17", features = ["derive", "wrap_help"] }

brush-interactive/Cargo.toml

+3-3
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.7"
4+
version = "0.2.8"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -23,8 +23,8 @@ workspace = true
2323

2424
[dependencies]
2525
async-trait = "0.1.82"
26-
brush-parser = { version = "^0.2.6", path = "../brush-parser" }
27-
brush-core = { version = "^0.2.7", path = "../brush-core" }
26+
brush-parser = { version = "^0.2.7", path = "../brush-parser" }
27+
brush-core = { version = "^0.2.8", path = "../brush-core" }
2828
rustyline = { package = "brush-rustyline-fork", version = "14.0.1", optional = true, features = [
2929
"derive",
3030
] }

brush-parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-parser"
33
description = "POSIX/bash shell tokenizer and parsers (used by brush-shell)"
4-
version = "0.2.6"
4+
version = "0.2.7"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true

brush-shell/Cargo.toml

+5-5
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.7"
4+
version = "0.2.8"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -26,8 +26,8 @@ workspace = true
2626

2727
[dependencies]
2828
async-trait = "0.1.82"
29-
brush-parser = { version = "^0.2.6", path = "../brush-parser" }
30-
brush-core = { version = "^0.2.7", path = "../brush-core" }
29+
brush-parser = { version = "^0.2.7", path = "../brush-parser" }
30+
brush-core = { version = "^0.2.8", path = "../brush-core" }
3131
cfg-if = "1.0.0"
3232
clap = { version = "4.5.17", features = ["derive", "wrap_help"] }
3333
const_format = "0.2.33"
@@ -37,13 +37,13 @@ tracing = "0.1.40"
3737
tracing-subscriber = "0.3.18"
3838

3939
[target.'cfg(not(any(windows, unix)))'.dependencies]
40-
brush-interactive = { version = "^0.2.7", path = "../brush-interactive", features = [
40+
brush-interactive = { version = "^0.2.8", path = "../brush-interactive", features = [
4141
"basic",
4242
] }
4343
tokio = { version = "1.40.0", features = ["rt", "sync"] }
4444

4545
[target.'cfg(any(windows, unix))'.dependencies]
46-
brush-interactive = { version = "^0.2.7", path = "../brush-interactive", features = [
46+
brush-interactive = { version = "^0.2.8", path = "../brush-interactive", features = [
4747
"rustyline",
4848
] }
4949
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "sync"] }

xtask/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version.workspace = true
1313

1414
[dependencies]
1515
anyhow = "1.0.89"
16-
brush-shell = { version = "^0.2.7", path = "../brush-shell" }
16+
brush-shell = { version = "^0.2.8", path = "../brush-shell" }
1717
clap = { version = "4.5.17", features = ["derive"] }
1818
clap_mangen = "0.2.23"
1919
clap-markdown = "0.1.4"

0 commit comments

Comments
 (0)