Skip to content

Commit 97ba71c

Browse files
authored
chore: prepare release (#217)
1 parent 251b3be commit 97ba71c

File tree

7 files changed

+63
-16
lines changed

7 files changed

+63
-16
lines changed

CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,53 @@ 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.11] - 2024-10-18
9+
10+
### 🚀 Features
11+
12+
- Experimentally enable reedline as an input backend ([#186](https://github.com/reubeno/brush/pull/186))
13+
- Default to reedline and add syntax highlighting support ([#187](https://github.com/reubeno/brush/pull/187))
14+
- Add a panic handler via human-panic ([#191](https://github.com/reubeno/brush/pull/191))
15+
- Several fixes for bash-completion + tests ([#192](https://github.com/reubeno/brush/pull/192))
16+
- Implement `cd -` ([#201](https://github.com/reubeno/brush/pull/201))
17+
- Implement command hashing ([#206](https://github.com/reubeno/brush/pull/206))
18+
19+
### 🐛 Bug Fixes
20+
21+
- Deduplicate completion candidates ([#189](https://github.com/reubeno/brush/pull/189))
22+
- Cleanup transient completion variables ([#213](https://github.com/reubeno/brush/pull/213))
23+
- Allow newlines in extended test exprs ([#188](https://github.com/reubeno/brush/pull/188))
24+
- Fixes for short-circuit precedence + parameter expr replacement ([#193](https://github.com/reubeno/brush/pull/193))
25+
- Workarounds for edge word parsing cases ([#194](https://github.com/reubeno/brush/pull/194))
26+
- Assorted completion issues with ~ and vars ([#199](https://github.com/reubeno/brush/pull/199))
27+
- Slight compat improvements to set -x ([#205](https://github.com/reubeno/brush/pull/205))
28+
- Matching newline chars in glob patterns ([#207](https://github.com/reubeno/brush/pull/207))
29+
- Honor IFS in read builtin ([#208](https://github.com/reubeno/brush/pull/208))
30+
- Correct behavior of break in arithmetic for loop ([#210](https://github.com/reubeno/brush/pull/210))
31+
- Address issues with array unset ([#211](https://github.com/reubeno/brush/pull/211))
32+
- Handle expansion in here documents ([#212](https://github.com/reubeno/brush/pull/212))
33+
34+
### 📚 Documentation
35+
36+
- Update readme ([#182](https://github.com/reubeno/brush/pull/182))
37+
- Update readme with new links ([#204](https://github.com/reubeno/brush/pull/204))
38+
39+
### 🧪 Testing
40+
41+
- Enable setting min oracle version on tests ([#184](https://github.com/reubeno/brush/pull/184))
42+
43+
### ⚙️ Miscellaneous Tasks
44+
45+
- Where possible replace `async-trait` with native async trait support in 1.75+ ([#197](https://github.com/reubeno/brush/pull/197))
46+
47+
### Build
48+
49+
- *(deps)* Bump futures from 0.3.30 to 0.3.31 in the cargo group ([#190](https://github.com/reubeno/brush/pull/190))
50+
- Leave rustyline disabled by default ([#196](https://github.com/reubeno/brush/pull/196))
51+
- *(deps)* Bump the cargo group with 4 updates ([#203](https://github.com/reubeno/brush/pull/203))
52+
- Remove rustyline support ([#216](https://github.com/reubeno/brush/pull/216))
53+
54+
<!-- generated by git-cliff -->
855
## [0.2.10] - 2024-09-30
956

1057
### 🐛 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.10"
4+
version = "0.2.11"
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.83"
22-
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.9", 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.10"
4+
version = "0.2.11"
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.8", path = "../brush-parser" }
28-
brush-core = { version = "^0.2.10", path = "../brush-core" }
27+
brush-parser = { version = "^0.2.9", path = "../brush-parser" }
28+
brush-core = { version = "^0.2.11", 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.8"
4+
version = "0.2.9"
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.10"
4+
version = "0.2.11"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -35,8 +35,8 @@ workspace = true
3535

3636
[dependencies]
3737
async-trait = "0.1.83"
38-
brush-parser = { version = "^0.2.8", path = "../brush-parser" }
39-
brush-core = { version = "^0.2.10", path = "../brush-core" }
38+
brush-parser = { version = "^0.2.9", path = "../brush-parser" }
39+
brush-core = { version = "^0.2.11", path = "../brush-core" }
4040
cfg-if = "1.0.0"
4141
clap = { version = "4.5.17", features = ["derive", "wrap_help"] }
4242
const_format = "0.2.33"
@@ -47,13 +47,13 @@ tracing-subscriber = "0.3.18"
4747
human-panic = "2.0.2"
4848

4949
[target.'cfg(not(any(windows, unix)))'.dependencies]
50-
brush-interactive = { version = "^0.2.10", path = "../brush-interactive", features = [
50+
brush-interactive = { version = "^0.2.11", path = "../brush-interactive", features = [
5151
"basic",
5252
] }
5353
tokio = { version = "1.40.0", features = ["rt", "sync"] }
5454

5555
[target.'cfg(any(windows, unix))'.dependencies]
56-
brush-interactive = { version = "^0.2.10", path = "../brush-interactive", features = [
56+
brush-interactive = { version = "^0.2.11", path = "../brush-interactive", features = [
5757
"reedline",
5858
] }
5959
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.10", path = "../brush-shell" }
16+
brush-shell = { version = "^0.2.11", path = "../brush-shell" }
1717
clap = { version = "4.5.17", features = ["derive"] }
1818
clap_mangen = "0.2.24"
1919
clap-markdown = "0.1.4"

0 commit comments

Comments
 (0)