Skip to content

Commit 2661136

Browse files
authored
chore: prepare release (#135)
1 parent 8023680 commit 2661136

File tree

6 files changed

+25
-14
lines changed

6 files changed

+25
-14
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.5] - 2024-07-23
9+
10+
### 🐛 Bug Fixes
11+
12+
- Build error outside git ([#134](https://github.com/reubeno/brush/pull/134))
13+
14+
### Build
15+
16+
- *(deps)* Bump the cargo group with 2 updates ([#133](https://github.com/reubeno/brush/pull/133))
17+
18+
<!-- generated by git-cliff -->
819
## [0.2.4] - 2024-07-19
920

1021
### 🚀 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.4"
4+
version = "0.2.5"
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.4", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
2323
cached = "0.53.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.4"
4+
version = "0.2.5"
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.4", path = "../brush-parser" }
22-
brush-core = { version = "^0.2.4", path = "../brush-core" }
21+
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
22+
brush-core = { version = "^0.2.5", 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.4"
4+
version = "0.2.5"
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.4"
4+
version = "0.2.5"
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.4", path = "../brush-interactive" }
30-
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
31-
brush-core = { version = "^0.2.4", path = "../brush-core" }
29+
brush-interactive = { version = "^0.2.5", path = "../brush-interactive" }
30+
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
31+
brush-core = { version = "^0.2.5", 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"

0 commit comments

Comments
 (0)