Skip to content

Commit a2d67d0

Browse files
authored
chore: bump version to 0.2.2 (#78)
1 parent 4d9a533 commit a2d67d0

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.2] - 2025-08-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Use install-action to install git-cliff (#77)
13+
814
## [0.2.1] - 2025-08-30
915

1016
### Miscellaneous Tasks
@@ -15,9 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521
- Update dependabot commit message
1622
- Add comprehensive GitHub Copilot instructions for jxcape development (#73)
1723
- Add comprehensive release pipeline with cross-platform builds and automation (#75)
24+
- Bump version to 0.2.1 (#76)
1825

1926
## [0.1.0] - 2023-11-23
2027

28+
[0.2.2]: https://github.com/rhysparry/jxcape/compare/v0.2.1..v0.2.2
2129
[0.2.1]: https://github.com/rhysparry/jxcape/compare/v0.2.0..v0.2.1
2230

2331
<!-- generated by git-cliff -->

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "jxcape"
33
description = "A command line tool for creating JSON values"
44
repository = "https://github.com/rhysparry/jxcape"
5-
version = "0.2.1"
5+
version = "0.2.2"
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
88
keywords = ["json", "cli"]

justfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ check:
1010
cargo clippy -- -D warnings
1111
cargo test
1212

13+
sed-i := if os() == "macos" { "sed -i ''" } else { "sed -i" }
14+
1315
# Prepare a new release (update changelog and check everything)
1416
prepare-release version:
1517
@echo "Preparing release {{version}}..."
1618
@echo "Updating Cargo.toml version..."
17-
sed -i 's/^version = ".*"/version = "{{version}}"/' Cargo.toml
19+
{{ sed-i }} 's/^version = ".*"/version = "{{version}}"/' Cargo.toml
1820
@echo "Updating changelog..."
1921
git cliff --tag v{{version}} --output CHANGELOG.md
2022
@echo "Running quality checks..."

0 commit comments

Comments
 (0)