Skip to content

Commit 191889a

Browse files
authored
chore: prepare release (#272)
1 parent 3fe3521 commit 191889a

File tree

7 files changed

+36
-16
lines changed

7 files changed

+36
-16
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ 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.13] - 2024-11-26
9+
10+
### 🚀 Features
11+
12+
- *(ast)* Derive `PartialEq` and `Eq` for testing ([#259](https://github.com/reubeno/brush/pull/259))
13+
14+
### 🐛 Bug Fixes
15+
16+
- Correct parsing of parens in arithmetic command ([#270](https://github.com/reubeno/brush/pull/270))
17+
18+
### ⚙️ Miscellaneous Tasks
19+
20+
- Upgrade dependencies ([#271](https://github.com/reubeno/brush/pull/271))
21+
22+
### Build
23+
24+
- *(deps)* Bump the cargo group with 3 updates ([#258](https://github.com/reubeno/brush/pull/258))
25+
- *(deps)* Bump the cargo group with 7 updates ([#267](https://github.com/reubeno/brush/pull/267))
26+
27+
<!-- generated by git-cliff -->
828
## [0.2.12] - 2024-11-03
929

1030
### 🚀 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.12"
4+
version = "0.2.13"
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.10", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.11", path = "../brush-parser" }
2323
cached = "0.54.0"
2424
cfg-if = "1.0.0"
2525
clap = { version = "4.5.21", 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.12"
4+
version = "0.2.13"
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.10", path = "../brush-parser" }
28-
brush-core = { version = "^0.2.12", path = "../brush-core" }
27+
brush-parser = { version = "^0.2.11", path = "../brush-parser" }
28+
brush-core = { version = "^0.2.13", path = "../brush-core" }
2929
indexmap = "2.6.0"
3030
nu-ansi-term = { version = "0.50.1", optional = true }
3131
reedline = { version = "0.37.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.10"
4+
version = "0.2.11"
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.12"
4+
version = "0.2.13"
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.10", path = "../brush-parser" }
43-
brush-core = { version = "^0.2.12", path = "../brush-core" }
42+
brush-parser = { version = "^0.2.11", path = "../brush-parser" }
43+
brush-core = { version = "^0.2.13", path = "../brush-core" }
4444
cfg-if = "1.0.0"
4545
clap = { version = "4.5.21", 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.12", path = "../brush-interactive", features = [
54+
brush-interactive = { version = "^0.2.13", path = "../brush-interactive", features = [
5555
"basic",
5656
] }
5757
tokio = { version = "1.41.1", features = ["rt", "sync"] }
5858

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

0 commit comments

Comments
 (0)