Skip to content

Commit ea063af

Browse files
authored
build: prepare next release (#132)
1 parent aba6824 commit ea063af

File tree

7 files changed

+64
-28
lines changed

7 files changed

+64
-28
lines changed

CHANGELOG.md

+34-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,38 @@ 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-
## [brush-shell-v0.2.3] - 2024-07-03
8+
## [0.2.4] - 2024-07-19
9+
10+
### 🚀 Features
11+
12+
- Initial support for non-linux
13+
- Enable simpler builtins implemented outside brush ([#130](https://github.com/reubeno/brush/pull/130))
14+
- Get building on windows and wasm-wasip1 targets ([#116](https://github.com/reubeno/brush/pull/116))
15+
- Add brushctl builtin, seed with event toggling support
16+
17+
### 🐛 Bug Fixes
18+
19+
- Absorb breaking change in homedir crate
20+
- Clippy and check warnings ([#123](https://github.com/reubeno/brush/pull/123))
21+
- Correct completion fallback logic when spec matches but 0 results ([#125](https://github.com/reubeno/brush/pull/125))
22+
- Various build warnings on windows build ([#126](https://github.com/reubeno/brush/pull/126))
23+
- Exclude tags from git version info ([#115](https://github.com/reubeno/brush/pull/115))
24+
25+
### 📚 Documentation
26+
27+
- Update readme ([#127](https://github.com/reubeno/brush/pull/127))
28+
29+
### ⚙️ Miscellaneous Tasks
30+
31+
- Merge builtin and builtins modules
32+
- Update comments ([#129](https://github.com/reubeno/brush/pull/129))
33+
34+
### Build
35+
36+
- *(deps)* Bump the cargo group across 1 directory with 5 updates
37+
38+
<!-- generated by git-cliff -->
39+
## [0.2.3] - 2024-07-03
940

1041
### 🚀 Features
1142

@@ -35,7 +66,7 @@ All notable changes to this project will be documented in this file.
3566
- Take targeted dependency updates (#93)
3667
- Update config (#97)
3768

38-
## [brush-shell-v0.2.2] - 2024-06-19
69+
## [0.2.2] - 2024-06-19
3970

4071
### 🚀 Features
4172

@@ -70,7 +101,7 @@ All notable changes to this project will be documented in this file.
70101
- Update dependencies
71102
- Adjust clippy warnings
72103

73-
## [brush-shell-v0.1.0] - 2024-06-11
104+
## [0.1.0] - 2024-06-11
74105

75106
### Build
76107

Cargo.lock

+15-15
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.3"
4+
version = "0.2.4"
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.81"
22-
brush-parser = { version = "^0.2.3", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
2323
cached = "0.52.0"
2424
cfg-if = "1.0.0"
2525
# N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version.

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.3"
4+
version = "0.2.4"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -18,8 +18,8 @@ bench = false
1818
workspace = true
1919

2020
[dependencies]
21-
brush-parser = { version = "^0.2.3", path = "../brush-parser" }
22-
brush-core = { version = "^0.2.3", path = "../brush-core" }
21+
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
22+
brush-core = { version = "^0.2.4", path = "../brush-core" }
2323
thiserror = "1.0.62"
2424
tracing = "0.1.40"
2525

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.3"
4+
version = "0.2.4"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true

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.3"
4+
version = "0.2.4"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -26,9 +26,9 @@ workspace = true
2626

2727
[dependencies]
2828
async-trait = "0.1.80"
29-
brush-interactive = { version = "^0.2.3", path = "../brush-interactive" }
30-
brush-parser = { version = "^0.2.3", path = "../brush-parser" }
31-
brush-core = { version = "^0.2.3", path = "../brush-core" }
29+
brush-interactive = { version = "^0.2.4", path = "../brush-interactive" }
30+
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
31+
brush-core = { version = "^0.2.4", path = "../brush-core" }
3232
# N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version.
3333
clap = { version = "=4.4.18", features = ["derive", "wrap_help"] }
3434
const_format = "0.2.32"

release-plz.toml

+5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
# ref: https://release-plz.ieni.dev/docs/extra/single-changelog
44
changelog_config = "cliff.toml"
55
changelog_update = false
6+
git_release_enable = false
67
publish = true
78

89
[[package]]
910
name = "brush-shell"
1011
changelog_update = true
1112
changelog_path = "./CHANGELOG.md"
13+
changelog_include = ["brush-core", "brush-interactive-shell", "brush-parser"]
14+
git_release_enable = true
15+
git_release_name = "brush v{{ version }}"
16+
git_release_body = ""

0 commit comments

Comments
 (0)