Skip to content

Commit 3ed06fe

Browse files
authored
chore: prepare release (#256)
1 parent 9e16201 commit 3ed06fe

File tree

7 files changed

+52
-16
lines changed

7 files changed

+52
-16
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,42 @@ 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.12] - 2024-11-03
9+
10+
### 🚀 Features
11+
12+
- Implement support for ;;& and ;& in case items ([#223](https://github.com/reubeno/brush/pull/223))
13+
- Implement `|&` extension ([#240](https://github.com/reubeno/brush/pull/240))
14+
- Implement `kill -l` ([#221](https://github.com/reubeno/brush/pull/221))
15+
- Implement `|&` for function declarations ([#244](https://github.com/reubeno/brush/pull/244))
16+
17+
### 🐛 Bug Fixes
18+
19+
- Omit dirs from executable searches ([#236](https://github.com/reubeno/brush/pull/236))
20+
- Handle PS2 prompts that require prompt-expansion ([#239](https://github.com/reubeno/brush/pull/239))
21+
- Allow usually-operator chars in regex parens ([#224](https://github.com/reubeno/brush/pull/224))
22+
- Assorted correctness issues in getopts builtin ([#225](https://github.com/reubeno/brush/pull/225))
23+
- Assorted completion-related issues ([#226](https://github.com/reubeno/brush/pull/226))
24+
- String replacement with slashes ([#231](https://github.com/reubeno/brush/pull/231))
25+
- Correct pattern removal expansions on arrays ([#232](https://github.com/reubeno/brush/pull/232))
26+
- *(completion)* Fix -- handling in getopts ([#235](https://github.com/reubeno/brush/pull/235))
27+
- *(completion)* Correct behavior of slice past end of array ([#237](https://github.com/reubeno/brush/pull/237))
28+
- Support here documents in command substitutions ([#255](https://github.com/reubeno/brush/pull/255))
29+
30+
### 🧪 Testing
31+
32+
- Run completion tests using bash-completion 2.14.0 ([#238](https://github.com/reubeno/brush/pull/238))
33+
- Add os-targeted integration tests ([#241](https://github.com/reubeno/brush/pull/241))
34+
35+
### ⚙️ Miscellaneous Tasks
36+
37+
- Upgrade crate dependencies ([#247](https://github.com/reubeno/brush/pull/247))
38+
39+
### Build
40+
41+
- *(deps)* Bump the cargo group with 2 updates ([#220](https://github.com/reubeno/brush/pull/220))
42+
43+
<!-- generated by git-cliff -->
844
## [0.2.11] - 2024-10-18
945

1046
### 🚀 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.11"
4+
version = "0.2.12"
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.1"
2121
async-trait = "0.1.83"
22-
brush-parser = { version = "^0.2.9", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.10", path = "../brush-parser" }
2323
cached = "0.53.1"
2424
cfg-if = "1.0.0"
2525
clap = { version = "4.5.20", 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.11"
4+
version = "0.2.12"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -24,8 +24,8 @@ workspace = true
2424

2525
[dependencies]
2626
async-trait = "0.1.83"
27-
brush-parser = { version = "^0.2.9", path = "../brush-parser" }
28-
brush-core = { version = "^0.2.11", path = "../brush-core" }
27+
brush-parser = { version = "^0.2.10", path = "../brush-parser" }
28+
brush-core = { version = "^0.2.12", path = "../brush-core" }
2929
indexmap = "2.6.0"
3030
nu-ansi-term = { version = "0.50.1", optional = true }
3131
reedline = { version = "0.36.0", optional = true }

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.9"
4+
version = "0.2.10"
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.11"
4+
version = "0.2.12"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -39,8 +39,8 @@ workspace = true
3939

4040
[dependencies]
4141
async-trait = "0.1.83"
42-
brush-parser = { version = "^0.2.9", path = "../brush-parser" }
43-
brush-core = { version = "^0.2.11", path = "../brush-core" }
42+
brush-parser = { version = "^0.2.10", path = "../brush-parser" }
43+
brush-core = { version = "^0.2.12", path = "../brush-core" }
4444
cfg-if = "1.0.0"
4545
clap = { version = "4.5.20", features = ["derive", "env", "wrap_help"] }
4646
const_format = "0.2.33"
@@ -51,13 +51,13 @@ tracing-subscriber = "0.3.18"
5151
human-panic = "2.0.2"
5252

5353
[target.'cfg(not(any(windows, unix)))'.dependencies]
54-
brush-interactive = { version = "^0.2.11", path = "../brush-interactive", features = [
54+
brush-interactive = { version = "^0.2.12", path = "../brush-interactive", features = [
5555
"basic",
5656
] }
5757
tokio = { version = "1.41.0", features = ["rt", "sync"] }
5858

5959
[target.'cfg(any(windows, unix))'.dependencies]
60-
brush-interactive = { version = "^0.2.11", path = "../brush-interactive", features = [
60+
brush-interactive = { version = "^0.2.12", path = "../brush-interactive", features = [
6161
"reedline",
6262
] }
6363
tokio = { version = "1.41.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.91"
16-
brush-shell = { version = "^0.2.11", path = "../brush-shell" }
16+
brush-shell = { version = "^0.2.12", path = "../brush-shell" }
1717
clap = { version = "4.5.20", features = ["derive"] }
1818
clap_mangen = "0.2.24"
1919
clap-markdown = "0.1.4"

0 commit comments

Comments
 (0)