Skip to content

Commit c62788c

Browse files
authored
chore: prepare release (#181)
1 parent 2ddbf61 commit c62788c

File tree

6 files changed

+29
-11
lines changed

6 files changed

+29
-11
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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.10] - 2024-09-30
9+
10+
### 🐛 Bug Fixes
11+
12+
- Allow source to be used with process substitution ([#175](https://github.com/reubeno/brush/pull/175))
13+
- Address multiple issues with foreground controls for pipeline commands ([#180](https://github.com/reubeno/brush/pull/180))
14+
15+
### 🧪 Testing
16+
17+
- Move to cargo nextest ([#176](https://github.com/reubeno/brush/pull/176))
18+
- Correctly report skipped tests for nextest ([#178](https://github.com/reubeno/brush/pull/178))
19+
- Convert more test skips to known failures ([#179](https://github.com/reubeno/brush/pull/179))
20+
21+
### Build
22+
23+
- *(deps)* Bump the cargo group with 2 updates ([#177](https://github.com/reubeno/brush/pull/177))
24+
25+
<!-- generated by git-cliff -->
826
## [0.2.9] - 2024-09-26
927

1028
### 🚀 Features

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.9"
4+
version = "0.2.10"
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.9"
4+
version = "0.2.10"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -24,7 +24,7 @@ workspace = true
2424
[dependencies]
2525
async-trait = "0.1.83"
2626
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
27-
brush-core = { version = "^0.2.9", path = "../brush-core" }
27+
brush-core = { version = "^0.2.10", path = "../brush-core" }
2828
rustyline = { package = "brush-rustyline-fork", version = "14.0.1", optional = true, features = [
2929
"derive",
3030
] }

brush-shell/Cargo.toml

+4-4
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.9"
4+
version = "0.2.10"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -31,7 +31,7 @@ workspace = true
3131
[dependencies]
3232
async-trait = "0.1.83"
3333
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
34-
brush-core = { version = "^0.2.9", path = "../brush-core" }
34+
brush-core = { version = "^0.2.10", 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.9", path = "../brush-interactive", features = [
44+
brush-interactive = { version = "^0.2.10", 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.9", path = "../brush-interactive", features = [
50+
brush-interactive = { version = "^0.2.10", 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.9", path = "../brush-shell" }
16+
brush-shell = { version = "^0.2.10", 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)