Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .config/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "0.0.6",
"plumbing/git-filter-tree": "0.0.6"
".": "0.1.0",
"plumbing/git-filter-tree": "0.0.7"
}
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.1.0](https://github.com/git-ents/git-rewrite/compare/v0.0.6...v0.1.0) (2026-03-01)


### Features

* Add execution library for custom (future) CLI implementations ([7dc42c0](https://github.com/git-ents/git-rewrite/commit/7dc42c02942f9895d012d591f28030c8a5eb2940))
* Match CLI names to expected Git extension names ([5cf37da](https://github.com/git-ents/git-rewrite/commit/5cf37daa28e4ac9aad7198aeeed3fa9d73dd392c))


### Miscellaneous Chores

* Remove pre-release Release Please specification ([3e56890](https://github.com/git-ents/git-rewrite/commit/3e568908753b8eb8fb9b83bb83d728612349dd91))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* git-filter-tree bumped from 0.0.6 to 0.0.7

## [0.0.6](https://github.com/git-ents/git-rewrite/compare/v0.0.5...v0.0.6) (2026-03-01)


Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ clap_mangen = "0.2.31"

[package]
name = "git-rewrite"
version = "0.0.6"
version = "0.1.0"
description = "Filter and rewrite history, trees, and (eventuall) blobs."
repository = "https://github.com/git-ents/git-rewrite"
edition.workspace = true
Expand All @@ -34,4 +34,4 @@ clap.workspace = true
clap_mangen.workspace = true
git2.workspace = true
globset.workspace = true
git-filter-tree = { version = "0.0.6", path = "plumbing/git-filter-tree" }
git-filter-tree = { version = "0.0.7", path = "plumbing/git-filter-tree" }
8 changes: 8 additions & 0 deletions plumbing/git-filter-tree/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.0.7](https://github.com/git-ents/git-rewrite/compare/git-filter-tree-v0.0.6...git-filter-tree-v0.0.7) (2026-03-01)


### Features

* Add execution library for custom (future) CLI implementations ([7dc42c0](https://github.com/git-ents/git-rewrite/commit/7dc42c02942f9895d012d591f28030c8a5eb2940))
* Match CLI names to expected Git extension names ([5cf37da](https://github.com/git-ents/git-rewrite/commit/5cf37daa28e4ac9aad7198aeeed3fa9d73dd392c))

## [0.0.6](https://github.com/git-ents/git-rewrite/compare/git-filter-tree-v0.0.5...git-filter-tree-v0.0.6) (2026-03-01)


Expand Down
2 changes: 1 addition & 1 deletion plumbing/git-filter-tree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-filter-tree"
version = "0.0.6"
version = "0.1.0"
description = "Filter and write trees in Git's object database."
repository = "https://github.com/git-ents/git-rewrite"
edition.workspace = true
Expand Down