Skip to content

Commit b5e644d

Browse files
committed
chore: Bump version to 0.0.10 and add CHANGELOG
- Add CHANGELOG.md with recent changes - Bump version to 0.0.10 in Cargo.toml and src/main.rs - Document recent fixes and features including PR command, help message fix, and various test improvements
1 parent 0051056 commit b5e644d

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

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
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-chain"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)