File tree Expand file tree Collapse file tree 4 files changed +37
-3
lines changed Expand file tree Collapse file tree 4 files changed +37
-3
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ ## [ Unreleased]
9+
10+ ## [ 0.0.10] - 2025-11-05
11+
12+ ### Fixed
13+ - Fixed help message to show correct argument order: ` init <chain_name> <root_branch> ` ([ #46 ] ( https://github.com/dashed/git-chain/pull/46 ) )
14+ - Fixed test assertion to match corrected help message
15+ - Fixed PR command --draft and --web flag interoperability issue with GitHub CLI
16+ - Fixed PR tests in GitHub Actions
17+ - Fixed rebase_no_forkpoint test
18+ - Fixed various merge test cases
19+
20+ ### Added
21+ - Added ` pr ` subcommand for creating GitHub pull requests ([ #40 ] ( https://github.com/dashed/git-chain/pull/40 ) )
22+ - Added support for ` --pr ` flag on ` list ` and ` status ` commands to show PR information
23+ - Added support for ` --draft ` flag when creating PRs
24+ - Added tests for PR functionality
25+
26+ ### Changed
27+ - Improved merge commit information retrieval
28+ - Updated GitHub Actions workflow
29+ - Updated gitignore
30+
31+ ## [ 0.0.9] - (Previous version)
32+
33+ [ unreleased ] : https://github.com/dashed/git-chain/compare/v0.0.9...HEAD
34+ [ 0.0.10 ] : https://github.com/dashed/git-chain/compare/v0.0.9...v0.0.10
Original file line number Diff line number Diff line change 11[package ]
22name = " git-chain"
3- version = " 0.0.9 "
3+ version = " 0.0.10 "
44edition = " 2021"
55
66# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Original file line number Diff line number Diff line change @@ -3538,7 +3538,7 @@ Examples:
35383538
35393539 let arg_matches = App :: new ( "git-chain" )
35403540 . bin_name ( executable_name ( ) )
3541- . version ( "0.0.9 " )
3541+ . version ( "0.0.10 " )
35423542 . author ( "Alberto Leal <[email protected] >" ) 35433543 . about ( "Tool for rebasing a chain of local git branches." )
35443544 . subcommand ( init_subcommand)
You can’t perform that action at this time.
0 commit comments