diff --git a/CHANGELOG.md b/CHANGELOG.md index 8837213..cd1cf4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.2.0 (2026-01-18) + +### Breaking Changes + +- only print URl after creating Issue/PR for better scriptibility + +### Features + +- add interactive selection to pr-checkout. Activates when no PR number is provided as a CLI argument +- add interactive selection to issue-list and pr-list (via --interactive flag) +- add query support to issue-list and pr-list subcommands +- add --releases flag to browse subcommand +- add --fill flags for pr-create + +--- + +Full Changelog: [v0.1.0...v0.2.0](https://github.com/Leleat/git-forge/compare/v0.1.0...v0.2.0) + ## 0.1.0 (2026-01-09) ### Features @@ -9,5 +27,3 @@ --- Full Changelog: [6bcbb00b768e1cde03375f4493010746f9bef7a7...v0.1.0](https://github.com/Leleat/git-forge/compare/6bcbb00b768e1cde03375f4493010746f9bef7a7...v0.1.0) - - diff --git a/Cargo.lock b/Cargo.lock index 0ee96e8..4a61890 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -719,7 +719,7 @@ dependencies = [ [[package]] name = "git-forge" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 0cfc29d..fdafb55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-forge" -version = "0.1.0" +version = "0.2.0" edition = "2024" description = "Tool for basic interactions with git forges" readme = "README.md"