Skip to content

Commit

Permalink
build: prepare next release (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
reubeno authored Jul 19, 2024
1 parent aba6824 commit ea063af
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 28 deletions.
37 changes: 34 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,38 @@ 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.

## [brush-shell-v0.2.3] - 2024-07-03
## [0.2.4] - 2024-07-19

### 🚀 Features

- Initial support for non-linux
- Enable simpler builtins implemented outside brush ([#130](https://github.com/reubeno/brush/pull/130))
- Get building on windows and wasm-wasip1 targets ([#116](https://github.com/reubeno/brush/pull/116))
- Add brushctl builtin, seed with event toggling support

### 🐛 Bug Fixes

- Absorb breaking change in homedir crate
- Clippy and check warnings ([#123](https://github.com/reubeno/brush/pull/123))
- Correct completion fallback logic when spec matches but 0 results ([#125](https://github.com/reubeno/brush/pull/125))
- Various build warnings on windows build ([#126](https://github.com/reubeno/brush/pull/126))
- Exclude tags from git version info ([#115](https://github.com/reubeno/brush/pull/115))

### 📚 Documentation

- Update readme ([#127](https://github.com/reubeno/brush/pull/127))

### ⚙️ Miscellaneous Tasks

- Merge builtin and builtins modules
- Update comments ([#129](https://github.com/reubeno/brush/pull/129))

### Build

- *(deps)* Bump the cargo group across 1 directory with 5 updates

<!-- generated by git-cliff -->
## [0.2.3] - 2024-07-03

### 🚀 Features

Expand Down Expand Up @@ -35,7 +66,7 @@ All notable changes to this project will be documented in this file.
- Take targeted dependency updates (#93)
- Update config (#97)

## [brush-shell-v0.2.2] - 2024-06-19
## [0.2.2] - 2024-06-19

### 🚀 Features

Expand Down Expand Up @@ -70,7 +101,7 @@ All notable changes to this project will be documented in this file.
- Update dependencies
- Adjust clippy warnings

## [brush-shell-v0.1.0] - 2024-06-11
## [0.1.0] - 2024-06-11

### Build

Expand Down
30 changes: 15 additions & 15 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.3"
version = "0.2.4"
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.3", path = "../brush-parser" }
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
cached = "0.52.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.3"
version = "0.2.4"
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.3", path = "../brush-parser" }
brush-core = { version = "^0.2.3", path = "../brush-core" }
brush-parser = { version = "^0.2.4", path = "../brush-parser" }
brush-core = { version = "^0.2.4", 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.3"
version = "0.2.4"
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.3"
version = "0.2.4"
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.3", path = "../brush-interactive" }
brush-parser = { version = "^0.2.3", path = "../brush-parser" }
brush-core = { version = "^0.2.3", path = "../brush-core" }
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" }
# 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
5 changes: 5 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
# ref: https://release-plz.ieni.dev/docs/extra/single-changelog
changelog_config = "cliff.toml"
changelog_update = false
git_release_enable = false
publish = true

[[package]]
name = "brush-shell"
changelog_update = true
changelog_path = "./CHANGELOG.md"
changelog_include = ["brush-core", "brush-interactive-shell", "brush-parser"]
git_release_enable = true
git_release_name = "brush v{{ version }}"
git_release_body = ""

0 comments on commit ea063af

Please sign in to comment.