diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index 4f49790..20e87d5 100644 --- a/.config/release-please-manifest.json +++ b/.config/release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.0.6", - "plumbing/git-filter-tree": "0.0.6" + ".": "0.1.0", + "plumbing/git-filter-tree": "0.0.7" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6283d39..2f71f74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.lock b/Cargo.lock index 8a9b399..b44286b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ [[package]] name = "git-filter-tree" -version = "0.0.6" +version = "0.0.7" dependencies = [ "clap", "clap_mangen", @@ -201,7 +201,7 @@ dependencies = [ [[package]] name = "git-rewrite" -version = "0.0.6" +version = "0.1.0" dependencies = [ "clap", "clap_mangen", diff --git a/Cargo.toml b/Cargo.toml index 25df2d4..a900a17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 @@ -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" } diff --git a/plumbing/git-filter-tree/CHANGELOG.md b/plumbing/git-filter-tree/CHANGELOG.md index 9948d93..4e0fd71 100644 --- a/plumbing/git-filter-tree/CHANGELOG.md +++ b/plumbing/git-filter-tree/CHANGELOG.md @@ -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) diff --git a/plumbing/git-filter-tree/Cargo.toml b/plumbing/git-filter-tree/Cargo.toml index e57a074..fa37a87 100644 --- a/plumbing/git-filter-tree/Cargo.toml +++ b/plumbing/git-filter-tree/Cargo.toml @@ -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