Skip to content

Commit 925253e

Browse files
chore(release): bump crate versions on main (#35)
Release Notes --- <details><summary>git-filter-tree: 0.1.0</summary> ## [0.1.0](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](7dc42c0)) * Finalize `--only` API for porcelain commands ([7281313](7281313)) * Match CLI names to expected Git extension names ([5cf37da](5cf37da)) </details> <details><summary>0.1.0</summary> ## [0.1.0](v0.0.6...v0.1.0) (2026-03-01) ### Features * Add execution library for custom (future) CLI implementations ([7dc42c0](7dc42c0)) * Enable proper semantic versioning for all future releases ([ba4ab3b](ba4ab3b)) * Finalize `--only` API for porcelain commands ([7281313](7281313)) * Match CLI names to expected Git extension names ([5cf37da](5cf37da)) ### Miscellaneous Chores * Remove pre-release Release Please specification ([3e56890](3e56890)) ### Dependencies * The following workspace dependencies were updated * dependencies * git-filter-tree bumped from 0.0.6 to 0.1.0 </details> --- This release was generated with [Release Please](https://github.com/googleapis/release-please). Co-authored-by: robot-yavanna[bot] <264059672+robot-yavanna[bot]@users.noreply.github.com>
1 parent 7281313 commit 925253e

6 files changed

Lines changed: 38 additions & 7 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
".": "0.0.6",
3-
"plumbing/git-filter-tree": "0.0.6"
2+
".": "0.1.0",
3+
"plumbing/git-filter-tree": "0.1.0"
44
}

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [0.1.0](https://github.com/git-ents/git-rewrite/compare/v0.0.6...v0.1.0) (2026-03-01)
4+
5+
6+
### Features
7+
8+
* Add execution library for custom (future) CLI implementations ([7dc42c0](https://github.com/git-ents/git-rewrite/commit/7dc42c02942f9895d012d591f28030c8a5eb2940))
9+
* Enable proper semantic versioning for all future releases ([ba4ab3b](https://github.com/git-ents/git-rewrite/commit/ba4ab3b4bc228d635ee1eabb4eb4338f9d362c30))
10+
* Finalize `--only` API for porcelain commands ([7281313](https://github.com/git-ents/git-rewrite/commit/72813139db7e13a876cc99088916679e4d9c715c))
11+
* Match CLI names to expected Git extension names ([5cf37da](https://github.com/git-ents/git-rewrite/commit/5cf37daa28e4ac9aad7198aeeed3fa9d73dd392c))
12+
13+
14+
### Miscellaneous Chores
15+
16+
* Remove pre-release Release Please specification ([3e56890](https://github.com/git-ents/git-rewrite/commit/3e568908753b8eb8fb9b83bb83d728612349dd91))
17+
18+
19+
### Dependencies
20+
21+
* The following workspace dependencies were updated
22+
* dependencies
23+
* git-filter-tree bumped from 0.0.6 to 0.1.0
24+
325
## [0.0.6](https://github.com/git-ents/git-rewrite/compare/v0.0.5...v0.0.6) (2026-03-01)
426

527

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ clap_mangen = "0.2.31"
1515

1616
[package]
1717
name = "git-rewrite"
18-
version = "0.0.6"
18+
version = "0.1.0"
1919
description = "Filter and rewrite history, trees, and (eventuall) blobs."
2020
repository = "https://github.com/git-ents/git-rewrite"
2121
edition.workspace = true
@@ -34,4 +34,4 @@ clap.workspace = true
3434
clap_mangen.workspace = true
3535
git2.workspace = true
3636
globset.workspace = true
37-
git-filter-tree = { version = "0.0.6", path = "plumbing/git-filter-tree" }
37+
git-filter-tree = { version = "0.1.0", path = "plumbing/git-filter-tree" }

plumbing/git-filter-tree/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [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)
4+
5+
6+
### Features
7+
8+
* Add execution library for custom (future) CLI implementations ([7dc42c0](https://github.com/git-ents/git-rewrite/commit/7dc42c02942f9895d012d591f28030c8a5eb2940))
9+
* Finalize `--only` API for porcelain commands ([7281313](https://github.com/git-ents/git-rewrite/commit/72813139db7e13a876cc99088916679e4d9c715c))
10+
* Match CLI names to expected Git extension names ([5cf37da](https://github.com/git-ents/git-rewrite/commit/5cf37daa28e4ac9aad7198aeeed3fa9d73dd392c))
11+
312
## [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)
413

514

plumbing/git-filter-tree/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-filter-tree"
3-
version = "0.0.6"
3+
version = "0.1.0"
44
description = "Filter and write trees in Git's object database."
55
repository = "https://github.com/git-ents/git-rewrite"
66
edition.workspace = true

0 commit comments

Comments
 (0)