diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index f7200b9..0b252cd 100644 --- a/.config/release-please-manifest.json +++ b/.config/release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.0.0", + ".": "0.1.0", "plumbing/git-filter-tree": "0.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..447b60d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +## 0.1.0 (2026-02-26) + + +### Features + +* Add `git-filter` CLI ([1c70e0d](https://github.com/git-ents/git-filter/commit/1c70e0d39c74ae2dfb47f70abd391a47c05991cc)) +* Add library crate: `git-filter-tree` ([21acf6d](https://github.com/git-ents/git-filter/commit/21acf6d206ca2af0b4726ba533fd7627d2a20a98)) +* Add man-page generation via `clap_mangen` ([5e5f380](https://github.com/git-ents/git-filter/commit/5e5f38043189d163b8b3286bb9e34117bc9c0dcc)) +* Enable publishing for initial release ([ff8696e](https://github.com/git-ents/git-filter/commit/ff8696e779c67d175eb27a6091cc6508ebf04387)) diff --git a/Cargo.lock b/Cargo.lock index c552b26..03ff40c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -202,7 +202,7 @@ dependencies = [ [[package]] name = "git-filter-tree" -version = "0.0.0" +version = "0.1.0" dependencies = [ "clap", "git2", @@ -676,7 +676,7 @@ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" [[package]] name = "xtask" -version = "0.0.0" +version = "0.1.0" dependencies = [ "clap", "clap_mangen", diff --git a/Cargo.toml b/Cargo.toml index 543fe23..6672aac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ clap_mangen = "0.2.31" [package] name = "git-filter-cli" -version = "0.0.0" +version = "0.1.0" edition.workspace = true publish.workspace = true license.workspace = true diff --git a/plumbing/git-filter-tree/Cargo.toml b/plumbing/git-filter-tree/Cargo.toml index 7eb96c1..c45c260 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.0" +version = "0.1.0" edition.workspace = true publish.workspace = true license.workspace = true diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 19f3db4..57e1bb1 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.0.0" +version = "0.1.0" edition.workspace = true publish = false license.workspace = true