Skip to content

Commit

Permalink
chore: prepare release (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
reubeno authored Jul 23, 2024
1 parent 8023680 commit 2661136
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 14 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.5] - 2024-07-23

### 🐛 Bug Fixes

- Build error outside git ([#134](https://github.com/reubeno/brush/pull/134))

### Build

- *(deps)* Bump the cargo group with 2 updates ([#133](https://github.com/reubeno/brush/pull/133))

<!-- generated by git-cliff -->
## [0.2.4] - 2024-07-19

### 🚀 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.4"
version = "0.2.5"
categories.workspace = true
edition.workspace = true
keywords.workspace = true
Expand All @@ -19,7 +19,7 @@ workspace = true
[dependencies]
async-recursion = "1.1.0"
async-trait = "0.1.81"
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
cached = "0.53.0"
cfg-if = "1.0.0"
# N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version.
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.4"
version = "0.2.5"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand All @@ -18,8 +18,8 @@ bench = false
workspace = true

[dependencies]
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
brush-core = { version = "^0.2.4", path = "../brush-core" }
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
brush-core = { version = "^0.2.5", path = "../brush-core" }
thiserror = "1.0.62"
tracing = "0.1.40"

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.4"
version = "0.2.5"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
8 changes: 4 additions & 4 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.4"
version = "0.2.5"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand All @@ -26,9 +26,9 @@ workspace = true

[dependencies]
async-trait = "0.1.80"
brush-interactive = { version = "^0.2.4", path = "../brush-interactive" }
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
brush-core = { version = "^0.2.4", path = "../brush-core" }
brush-interactive = { version = "^0.2.5", path = "../brush-interactive" }
brush-parser = { version = "^0.2.5", path = "../brush-parser" }
brush-core = { version = "^0.2.5", path = "../brush-core" }
# N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version.
clap = { version = "=4.4.18", features = ["derive", "wrap_help"] }
const_format = "0.2.32"
Expand Down

0 comments on commit 2661136

Please sign in to comment.