File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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 -->
Original file line number Diff line number Diff line change 22name = " jxcape"
33description = " A command line tool for creating JSON values"
44repository = " https://github.com/rhysparry/jxcape"
5- version = " 0.2.1 "
5+ version = " 0.2.2 "
66edition = " 2021"
77license = " MIT OR Apache-2.0"
88keywords = [" json" , " cli" ]
Original file line number Diff line number Diff 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)
1416prepare-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..."
You can’t perform that action at this time.
0 commit comments