Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"crates/git-rewrite": "0.1.2",
"crates/git-filter-tree": "0.3.0"
"crates/git-rewrite": "0.1.3",
"crates/git-filter-tree": "0.3.1"
}
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions crates/git-filter-tree/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.1](https://github.com/git-ents/git-rewrite/compare/git-filter-tree-v0.3.0...git-filter-tree-v0.3.1) (2026-03-08)


### Bug Fixes

* Use Git-compatible path separators ([c385840](https://github.com/git-ents/git-rewrite/commit/c3858401529c5fe7f66945abf7a6ad84bdac6366))

## [0.3.0](https://github.com/git-ents/git-rewrite/compare/git-filter-tree-v0.2.0...git-filter-tree-v0.3.0) (2026-03-06)


Expand Down
2 changes: 1 addition & 1 deletion crates/git-filter-tree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-filter-tree"
version = "0.3.0"
version = "0.3.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"
Expand Down
9 changes: 9 additions & 0 deletions crates/git-rewrite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.1.3](https://github.com/git-ents/git-rewrite/compare/v0.1.2...v0.1.3) (2026-03-08)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* git-filter-tree bumped from 0.3.0 to 0.3.1

## [0.1.2](https://github.com/git-ents/git-rewrite/compare/v0.1.1...v0.1.2) (2026-03-06)


Expand Down
4 changes: 2 additions & 2 deletions crates/git-rewrite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-rewrite"
version = "0.1.2"
version = "0.1.3"
description = "Filter and rewrite history, trees, and (eventually) blobs."
repository = "https://github.com/git-ents/git-filter"
documentation = "https://docs.rs/git-rewrite"
Expand All @@ -25,4 +25,4 @@ clap.workspace = true
clap_mangen.workspace = true
git2.workspace = true
globset.workspace = true
git-filter-tree = { version = "0.3.0", path = "../git-filter-tree" }
git-filter-tree = { version = "0.3.1", path = "../git-filter-tree" }
Loading