Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.24.0"
".": "0.25.0"
}
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Changelog

## [0.25.0](https://github.com/narnaud/git-loom/compare/v0.24.0...v0.25.0) (2026-09-25)


### Features ✨

* **agent:** answer the -p hunk picker with data ([100b5b1](https://github.com/narnaud/git-loom/commit/100b5b177357e32277042c71936834f3fedd4189)) by @dfaure-kdab
* **agent:** emit the status graph as JSON on stdout ([24782cf](https://github.com/narnaud/git-loom/commit/24782cf18d9e6ec0759634381e20be5496e518ec)) by @narnaud
* **fold:** forward `git commit` options after `--` ([f940369](https://github.com/narnaud/git-loom/commit/f94036970f0daba89db86e1e61e087242fd33407)) by @dfaure-kdab
* **status:** put the abbreviated hash next to the short ID ([9c08ec8](https://github.com/narnaud/git-loom/commit/9c08ec8a4ee9dda9b5b50f474e882e52997cb70f)) by @narnaud
* **tui:** mark the source rows of a pending commit or fold ([6a95666](https://github.com/narnaud/git-loom/commit/6a95666a27d315399919df673a482d20fbd3f9b8)) by @narnaud
* **tui:** pick hunks with C before placing the commit ([8f1a63c](https://github.com/narnaud/git-loom/commit/8f1a63cd127d9cb51ed607956bb510efa739f3c9)) by @narnaud
* **tui:** title the hunk picker with the action it is for ([4274f75](https://github.com/narnaud/git-loom/commit/4274f7560174696dd84b3b0f45b9d917c1b4a8ae)) by @narnaud
* **tui:** walk the fold targets, tagged with what the fold does ([c668ad9](https://github.com/narnaud/git-loom/commit/c668ad994ba45f2678ee07fcec153ead83a891ce)) by @narnaud


### Bug Fixes 🐞

* **commit,absorb:** restore the staged patch before deleting the state file ([ce7c312](https://github.com/narnaud/git-loom/commit/ce7c3128ee9f5fd9b0c0b6c1bd3e1b002d2e9d6d)) by @narnaud
* put staged changes back when a rebase completes ([ec6ad96](https://github.com/narnaud/git-loom/commit/ec6ad9666c054e4d069ecae0f7aec41d779cb27b)) by @dfaure-kdab
* **staging:** never drop the staging set aside for a rewrite ([eb1aeac](https://github.com/narnaud/git-loom/commit/eb1aeac8517c41753939948c3d19525223afb26b)) by @narnaud
* **staging:** scope the unmerged-index hint to the paths it is about ([d63fe36](https://github.com/narnaud/git-loom/commit/d63fe36e7ce9e0a9abb8e5a833d517aa42d836fc)) by @narnaud
* **transaction:** roll back what a refused rebase already changed ([1a2e3c1](https://github.com/narnaud/git-loom/commit/1a2e3c1e5dffeb80bfaa83a114d7090faa553865)) by @narnaud


### Performance Improvements ⚡

* **tui:** read a pick's hunks on a worker, not on the loop ([b5c51e8](https://github.com/narnaud/git-loom/commit/b5c51e8a4d4bac767dd371003f4ba928fb87d698)) by @narnaud


### Changes

* **tui:** Change `Fold/unfold` to `Open/close` ([bd487de](https://github.com/narnaud/git-loom/commit/bd487defd23465aaa57f675814df37c6c44b820a)) by @narnaud


### Other

* **deps:** bump clap from 4.6.6 to 4.6.7 ([7b3b811](https://github.com/narnaud/git-loom/commit/7b3b8116d2dc84f3e9461261306e725baca6b35c)) by @dependabot[bot]
* **release:** credit commit authors in the changelog ([23fa92a](https://github.com/narnaud/git-loom/commit/23fa92ae0c8c3518d2f41de168bdfb9344d3da30)) by @narnaud

## [0.24.0](https://github.com/narnaud/git-loom/compare/v0.23.0...v0.24.0) (2026-09-20)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-loom"
version = "0.24.0"
version = "0.25.0"
edition = "2024"
rust-version = "1.90"
description = "A Git CLI tool that weaves together multiple feature branches into integration branches"
Expand Down
Loading