diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index df8ac5b..30eac8e 100644 --- a/.config/release-please-manifest.json +++ b/.config/release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.1.0", - "plumbing/git-filter-tree": "0.1.0" + ".": "0.1.1", + "plumbing/git-filter-tree": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f07056e..dc511be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.1](https://github.com/git-ents/git-rewrite/compare/v0.1.0...v0.1.1) (2026-03-04) + + +### Bug Fixes + +* Add missing crate metadata ([2f252d4](https://github.com/git-ents/git-rewrite/commit/2f252d4a497198cef4ac83fade4d549de7566631)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * git-filter-tree bumped from 0.1.0 to 0.2.0 + ## [0.1.0](https://github.com/git-ents/git-rewrite/compare/v0.0.6...v0.1.0) (2026-03-01) diff --git a/Cargo.lock b/Cargo.lock index b98dbad..2975618 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ [[package]] name = "git-filter-tree" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "clap_mangen", @@ -201,7 +201,7 @@ dependencies = [ [[package]] name = "git-rewrite" -version = "0.1.0" +version = "0.1.1" dependencies = [ "clap", "clap_mangen", diff --git a/Cargo.toml b/Cargo.toml index c98632c..62f5a5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ clap_mangen = "0.2.31" [package] name = "git-rewrite" -version = "0.1.0" +version = "0.1.1" description = "Filter and rewrite history, trees, and (eventually) blobs." repository = "https://github.com/git-ents/git-filter" documentation = "https://docs.rs/git-rewrite" @@ -39,4 +39,4 @@ clap.workspace = true clap_mangen.workspace = true git2.workspace = true globset.workspace = true -git-filter-tree = { version = "0.1.0", path = "plumbing/git-filter-tree" } +git-filter-tree = { version = "0.2.0", path = "plumbing/git-filter-tree" } diff --git a/plumbing/git-filter-tree/CHANGELOG.md b/plumbing/git-filter-tree/CHANGELOG.md index 2f618c9..475ff98 100644 --- a/plumbing/git-filter-tree/CHANGELOG.md +++ b/plumbing/git-filter-tree/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.2.0](https://github.com/git-ents/git-rewrite/compare/git-filter-tree-v0.1.0...git-filter-tree-v0.2.0) (2026-03-04) + + +### Features + +* Add new `filter_by_attributes` trait method ([fedd5fd](https://github.com/git-ents/git-rewrite/commit/fedd5fde2dc5cb498d8c8f5327268cce0debd061)) +* Implement by-attribute filtering ([d761a56](https://github.com/git-ents/git-rewrite/commit/d761a56121ab26c753bf196bffd3708a4c20b022)) + + +### Bug Fixes + +* Add missing crate metadata ([2f252d4](https://github.com/git-ents/git-rewrite/commit/2f252d4a497198cef4ac83fade4d549de7566631)) + ## [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) diff --git a/plumbing/git-filter-tree/Cargo.toml b/plumbing/git-filter-tree/Cargo.toml index 8723342..d2014dc 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.1.0" +version = "0.1.1" description = "Filter and write trees in Git's object database." repository = "https://github.com/git-ents/git-filter" documentation = "https://docs.rs/git-filter-tree"