From 218281e7777901073e61a8aa817a4870d3f9a5c2 Mon Sep 17 00:00:00 2001 From: "robot-yavanna[bot]" <264059672+robot-yavanna[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 16:44:52 +0000 Subject: [PATCH] chore(release): bump crate versions on `main` --- .config/release-please-manifest.json | 4 ++-- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- plumbing/git-filter-tree/CHANGELOG.md | 9 +++++++++ plumbing/git-filter-tree/Cargo.toml | 2 +- 6 files changed, 38 insertions(+), 7 deletions(-) diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index 4f49790..df8ac5b 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.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6283d39..f07056e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # 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)) +* Enable proper semantic versioning for all future releases ([ba4ab3b](https://github.com/git-ents/git-rewrite/commit/ba4ab3b4bc228d635ee1eabb4eb4338f9d362c30)) +* Finalize `--only` API for porcelain commands ([7281313](https://github.com/git-ents/git-rewrite/commit/72813139db7e13a876cc99088916679e4d9c715c)) +* 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.1.0 + ## [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..b98dbad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ [[package]] name = "git-filter-tree" -version = "0.0.6" +version = "0.1.0" 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..7c2102f 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.1.0", path = "plumbing/git-filter-tree" } diff --git a/plumbing/git-filter-tree/CHANGELOG.md b/plumbing/git-filter-tree/CHANGELOG.md index 9948d93..2f618c9 100644 --- a/plumbing/git-filter-tree/CHANGELOG.md +++ b/plumbing/git-filter-tree/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.0](https://github.com/git-ents/git-rewrite/compare/git-filter-tree-v0.0.6...git-filter-tree-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)) +* Finalize `--only` API for porcelain commands ([7281313](https://github.com/git-ents/git-rewrite/commit/72813139db7e13a876cc99088916679e4d9c715c)) +* 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