Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare release #272

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

All notable changes to this project will be documented in this file.

## [0.2.13] - 2024-11-26

### 🚀 Features

- *(ast)* Derive `PartialEq` and `Eq` for testing ([#259](https://github.com/reubeno/brush/pull/259))

### 🐛 Bug Fixes

- Correct parsing of parens in arithmetic command ([#270](https://github.com/reubeno/brush/pull/270))

### ⚙️ Miscellaneous Tasks

- Upgrade dependencies ([#271](https://github.com/reubeno/brush/pull/271))

### Build

- *(deps)* Bump the cargo group with 3 updates ([#258](https://github.com/reubeno/brush/pull/258))
- *(deps)* Bump the cargo group with 7 updates ([#267](https://github.com/reubeno/brush/pull/267))

<!-- generated by git-cliff -->
## [0.2.12] - 2024-11-03

### 🚀 Features
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions brush-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brush-core"
description = "Reusable core of a POSIX/bash shell (used by brush-shell)"
version = "0.2.12"
version = "0.2.13"
categories.workspace = true
edition.workspace = true
keywords.workspace = true
Expand All @@ -19,7 +19,7 @@ workspace = true
[dependencies]
async-recursion = "1.1.1"
async-trait = "0.1.83"
brush-parser = { version = "^0.2.10", path = "../brush-parser" }
brush-parser = { version = "^0.2.11", path = "../brush-parser" }
cached = "0.54.0"
cfg-if = "1.0.0"
clap = { version = "4.5.21", features = ["derive", "wrap_help"] }
Expand Down
6 changes: 3 additions & 3 deletions brush-interactive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brush-interactive"
description = "Interactive layer of brush-shell"
version = "0.2.12"
version = "0.2.13"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand All @@ -24,8 +24,8 @@ workspace = true

[dependencies]
async-trait = "0.1.83"
brush-parser = { version = "^0.2.10", path = "../brush-parser" }
brush-core = { version = "^0.2.12", path = "../brush-core" }
brush-parser = { version = "^0.2.11", path = "../brush-parser" }
brush-core = { version = "^0.2.13", path = "../brush-core" }
indexmap = "2.6.0"
nu-ansi-term = { version = "0.50.1", optional = true }
reedline = { version = "0.37.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion brush-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brush-parser"
description = "POSIX/bash shell tokenizer and parsers (used by brush-shell)"
version = "0.2.10"
version = "0.2.11"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions brush-shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brush-shell"
description = "Rust-implemented shell focused on POSIX and bash compatibility"
version = "0.2.12"
version = "0.2.13"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -39,8 +39,8 @@ workspace = true

[dependencies]
async-trait = "0.1.83"
brush-parser = { version = "^0.2.10", path = "../brush-parser" }
brush-core = { version = "^0.2.12", path = "../brush-core" }
brush-parser = { version = "^0.2.11", path = "../brush-parser" }
brush-core = { version = "^0.2.13", path = "../brush-core" }
cfg-if = "1.0.0"
clap = { version = "4.5.21", features = ["derive", "env", "wrap_help"] }
const_format = "0.2.33"
Expand All @@ -51,13 +51,13 @@ tracing-subscriber = "0.3.18"
human-panic = "2.0.2"

[target.'cfg(not(any(windows, unix)))'.dependencies]
brush-interactive = { version = "^0.2.12", path = "../brush-interactive", features = [
brush-interactive = { version = "^0.2.13", path = "../brush-interactive", features = [
"basic",
] }
tokio = { version = "1.41.1", features = ["rt", "sync"] }

[target.'cfg(any(windows, unix))'.dependencies]
brush-interactive = { version = "^0.2.12", path = "../brush-interactive", features = [
brush-interactive = { version = "^0.2.13", path = "../brush-interactive", features = [
"reedline",
] }
tokio = { version = "1.41.1", features = ["rt", "rt-multi-thread", "sync"] }
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version.workspace = true

[dependencies]
anyhow = "1.0.93"
brush-shell = { version = "^0.2.12", path = "../brush-shell" }
brush-shell = { version = "^0.2.13", path = "../brush-shell" }
clap = { version = "4.5.21", features = ["derive"] }
clap_mangen = "0.2.24"
clap-markdown = "0.1.4"
Loading