diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index 4f872e7..039093b 100644 --- a/.config/release-please-manifest.json +++ b/.config/release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.0.5", + ".": "0.0.6", "plumbing/git-filter-tree": "0.0.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 53ee62a..b462d89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.0.6](https://github.com/git-ents/git-rewrite/compare/v0.0.5...v0.0.6) (2026-03-01) + + +### Miscellaneous Chores + +* Fix release step with proper tag filtering ([93bdb33](https://github.com/git-ents/git-rewrite/commit/93bdb331cc152197bc022c8da57952ef64abe7d5)) +* Fix version syncing in Release Please ([cb7699c](https://github.com/git-ents/git-rewrite/commit/cb7699c7050223877bf056ba6b63e7c2b235063f)) + ## [0.0.5](https://github.com/git-ents/git-rewrite/compare/v0.0.4...v0.0.5) (2026-03-01) diff --git a/Cargo.lock b/Cargo.lock index bf59dcb..67471a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -201,7 +201,7 @@ dependencies = [ [[package]] name = "git-rewrite" -version = "0.0.5" +version = "0.0.6" dependencies = [ "clap", "clap_mangen", diff --git a/Cargo.toml b/Cargo.toml index 2c789cc..143f640 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ clap_mangen = "0.2.31" [package] name = "git-rewrite" -version = "0.0.5" +version = "0.0.6" description = "Rewrite repository history, trees, and blobs" repository = "https://github.com/git-ents/git-rewrite" edition.workspace = true diff --git a/plumbing/git-filter-tree/Cargo.toml b/plumbing/git-filter-tree/Cargo.toml index b8906c5..32f16cf 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.5" +version = "0.0.6" description = "Filter Git tree objects by glob patterns" repository = "https://github.com/git-ents/git-rewrite" edition.workspace = true