Skip to content

Commit 663964a

Browse files
authored
chore: prepare release (#174)
1 parent 2f1acd6 commit 663964a

File tree

7 files changed

+38
-16
lines changed

7 files changed

+38
-16
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ 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.9] - 2024-09-26
9+
10+
### 🚀 Features
11+
12+
- Launch processes in their own process groups ([#166](https://github.com/reubeno/brush/pull/166))
13+
14+
### 🐛 Bug Fixes
15+
16+
- Posix compliant argument parsing for `-c` mode ([#147](https://github.com/reubeno/brush/pull/147))
17+
18+
### 🧪 Testing
19+
20+
- Add more basic interactive tests ([#168](https://github.com/reubeno/brush/pull/168))
21+
- Bring up macos testing ([#172](https://github.com/reubeno/brush/pull/172))
22+
23+
### Build
24+
25+
- *(deps)* Bump thiserror from 1.0.63 to 1.0.64 in the cargo group ([#167](https://github.com/reubeno/brush/pull/167))
26+
- Temporarily disable failing test ([#170](https://github.com/reubeno/brush/pull/170))
27+
- Refactor PR workflow to better support multi-platform build + test ([#169](https://github.com/reubeno/brush/pull/169))
28+
29+
<!-- generated by git-cliff -->
830
## [0.2.8] - 2024-09-17
931

1032
### 🐛 Bug Fixes

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.8"
4+
version = "0.2.9"
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.7", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.8", 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.8"
4+
version = "0.2.9"
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.7", path = "../brush-parser" }
27-
brush-core = { version = "^0.2.8", path = "../brush-core" }
26+
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
27+
brush-core = { version = "^0.2.9", 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.7"
4+
version = "0.2.8"
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.8"
4+
version = "0.2.9"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -30,8 +30,8 @@ workspace = true
3030

3131
[dependencies]
3232
async-trait = "0.1.82"
33-
brush-parser = { version = "^0.2.7", path = "../brush-parser" }
34-
brush-core = { version = "^0.2.8", path = "../brush-core" }
33+
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
34+
brush-core = { version = "^0.2.9", path = "../brush-core" }
3535
cfg-if = "1.0.0"
3636
clap = { version = "4.5.17", features = ["derive", "wrap_help"] }
3737
const_format = "0.2.33"
@@ -41,13 +41,13 @@ tracing = "0.1.40"
4141
tracing-subscriber = "0.3.18"
4242

4343
[target.'cfg(not(any(windows, unix)))'.dependencies]
44-
brush-interactive = { version = "^0.2.8", path = "../brush-interactive", features = [
44+
brush-interactive = { version = "^0.2.9", path = "../brush-interactive", features = [
4545
"basic",
4646
] }
4747
tokio = { version = "1.40.0", features = ["rt", "sync"] }
4848

4949
[target.'cfg(any(windows, unix))'.dependencies]
50-
brush-interactive = { version = "^0.2.8", path = "../brush-interactive", features = [
50+
brush-interactive = { version = "^0.2.9", path = "../brush-interactive", features = [
5151
"rustyline",
5252
] }
5353
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.8", path = "../brush-shell" }
16+
brush-shell = { version = "^0.2.9", 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)