Skip to content

Commit b360f6b

Browse files
authored
chore: prepare release (#155)
1 parent b6d4875 commit b360f6b

File tree

8 files changed

+50
-14
lines changed

8 files changed

+50
-14
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ 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.7] - 2024-09-01
9+
10+
### 🚀 Features
11+
12+
- Move MSRV up to 1.75.0 ([#139](https://github.com/reubeno/brush/pull/139))
13+
14+
### 🐛 Bug Fixes
15+
16+
- Correct echo -e escape expansion for \x sequences ([#143](https://github.com/reubeno/brush/pull/143))
17+
- Disable displaying tracing target ([#140](https://github.com/reubeno/brush/pull/140))
18+
- Correct multiple issues with process substitution + redirection ([#145](https://github.com/reubeno/brush/pull/145))
19+
20+
### Build
21+
22+
- *(deps)* Bump tokio from 1.39.1 to 1.39.2 in the cargo group ([#141](https://github.com/reubeno/brush/pull/141))
23+
- *(deps)* Bump the cargo group with 3 updates ([#148](https://github.com/reubeno/brush/pull/148))
24+
- *(deps)* Bump serde from 1.0.204 to 1.0.206 in the cargo group ([#150](https://github.com/reubeno/brush/pull/150))
25+
- *(deps)* Bump the cargo group with 2 updates ([#152](https://github.com/reubeno/brush/pull/152))
26+
- *(deps)* Bump serde from 1.0.208 to 1.0.209 in the cargo group ([#154](https://github.com/reubeno/brush/pull/154))
27+
28+
<!-- generated by git-cliff -->
829
## [0.2.6] - 2024-07-23
930

1031
### 🐛 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.6"
4+
version = "0.2.7"
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.5", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.6", path = "../brush-parser" }
2323
cached = "0.53.0"
2424
cfg-if = "1.0.0"
2525
clap = { version = "4.5.11", 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.6"
4+
version = "0.2.7"
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.5", path = "../brush-parser" }
22-
brush-core = { version = "^0.2.6", path = "../brush-core" }
21+
brush-parser = { version = "^0.2.6", path = "../brush-parser" }
22+
brush-core = { version = "^0.2.7", 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.5"
4+
version = "0.2.6"
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.6"
4+
version = "0.2.7"
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.6", path = "../brush-interactive" }
30-
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
31-
brush-core = { version = "^0.2.6", path = "../brush-core" }
29+
brush-interactive = { version = "^0.2.7", path = "../brush-interactive" }
30+
brush-parser = { version = "^0.2.6", path = "../brush-parser" }
31+
brush-core = { version = "^0.2.7", path = "../brush-core" }
3232
clap = { version = "4.5.11", features = ["derive", "wrap_help"] }
3333
const_format = "0.2.32"
3434
git-version = "0.3.9"

docs/how-to/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
* [How to build](build.md)
44
* [How to run tests](run-tests.md)
55
* [How to run benchmarks](run-benchmarks.md)
6+
* [How to release](release.md)

docs/how-to/release.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# How to release
2+
3+
_(This is only relevant for project maintainers.)_
4+
5+
* Install [release-plz](https://github.com/MarcoIeni/release-plz)
6+
* Checkout the `main` branch (with a clean working tree).
7+
* Run: `release-plz update`. Review its changes, notable including the changelog updates.
8+
* PR through any generated changes with a `chore: prepare release` commit summary.
9+
* After the changes have merged into `main`, update your local `main` branch.
10+
* Acquire GitHub and `crates.io` tokens that have sufficient permissions to publish.
11+
* Authenticate with `crates.io` by running: `cargo login`.
12+
* Run: `release-plz release --backend github --git-token <TOKEN>`.
13+
* Update the published GitHub release to include an auto-generated changelog.
14+
* Run: `cargo install --locked brush-shell` to verify the release.

0 commit comments

Comments
 (0)