Skip to content

Commit

Permalink
chore: prepare release (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
reubeno authored Sep 30, 2024
1 parent 2ddbf61 commit c62788c
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 11 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ 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.10] - 2024-09-30

### 🐛 Bug Fixes

- Allow source to be used with process substitution ([#175](https://github.com/reubeno/brush/pull/175))
- Address multiple issues with foreground controls for pipeline commands ([#180](https://github.com/reubeno/brush/pull/180))

### 🧪 Testing

- Move to cargo nextest ([#176](https://github.com/reubeno/brush/pull/176))
- Correctly report skipped tests for nextest ([#178](https://github.com/reubeno/brush/pull/178))
- Convert more test skips to known failures ([#179](https://github.com/reubeno/brush/pull/179))

### Build

- *(deps)* Bump the cargo group with 2 updates ([#177](https://github.com/reubeno/brush/pull/177))

<!-- generated by git-cliff -->
## [0.2.9] - 2024-09-26

### 🚀 Features
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.9"
version = "0.2.10"
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.9"
version = "0.2.10"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand All @@ -24,7 +24,7 @@ workspace = true
[dependencies]
async-trait = "0.1.83"
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
brush-core = { version = "^0.2.9", path = "../brush-core" }
brush-core = { version = "^0.2.10", path = "../brush-core" }
rustyline = { package = "brush-rustyline-fork", version = "14.0.1", optional = true, features = [
"derive",
] }
Expand Down
8 changes: 4 additions & 4 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.9"
version = "0.2.10"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -31,7 +31,7 @@ workspace = true
[dependencies]
async-trait = "0.1.83"
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
brush-core = { version = "^0.2.9", path = "../brush-core" }
brush-core = { version = "^0.2.10", path = "../brush-core" }
cfg-if = "1.0.0"
clap = { version = "4.5.17", features = ["derive", "wrap_help"] }
const_format = "0.2.33"
Expand All @@ -41,13 +41,13 @@ tracing = "0.1.40"
tracing-subscriber = "0.3.18"

[target.'cfg(not(any(windows, unix)))'.dependencies]
brush-interactive = { version = "^0.2.9", path = "../brush-interactive", features = [
brush-interactive = { version = "^0.2.10", path = "../brush-interactive", features = [
"basic",
] }
tokio = { version = "1.40.0", features = ["rt", "sync"] }

[target.'cfg(any(windows, unix))'.dependencies]
brush-interactive = { version = "^0.2.9", path = "../brush-interactive", features = [
brush-interactive = { version = "^0.2.10", path = "../brush-interactive", features = [
"rustyline",
] }
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "sync"] }
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version.workspace = true

[dependencies]
anyhow = "1.0.89"
brush-shell = { version = "^0.2.9", path = "../brush-shell" }
brush-shell = { version = "^0.2.10", path = "../brush-shell" }
clap = { version = "4.5.17", features = ["derive"] }
clap_mangen = "0.2.23"
clap-markdown = "0.1.4"

0 comments on commit c62788c

Please sign in to comment.