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-vendor": "0.1.1",
"crates/git-set-attr": "0.1.1"
"crates/git-vendor": "0.2.0",
"crates/git-set-attr": "0.1.2"
}
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-set-attr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.2](https://github.com/git-ents/git-vendor/compare/git-set-attr-v0.1.1...git-set-attr-v0.1.2) (2026-03-11)


### Bug Fixes

* Sort gitattributes entries by pattern for deterministic ordering ([8fbe454](https://github.com/git-ents/git-vendor/commit/8fbe45474f94aad87d7ad96315d9545578477981)), closes [#18](https://github.com/git-ents/git-vendor/issues/18)

## [0.1.1](https://github.com/git-ents/git-vendor/compare/git-set-attr-v0.1.0...git-set-attr-v0.1.1) (2026-03-08)


Expand Down
2 changes: 1 addition & 1 deletion crates/git-set-attr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rustdoc-args = ["--cfg", "docsrs"]

[package]
name = "git-set-attr"
version = "0.1.1"
version = "0.1.2"
description = "Set Git attributes via code, or from the command-line."
repository = "https://github.com/git-ents/git-vendor"
documentation = "https://docs.rs/git-set-attr"
Expand Down
23 changes: 23 additions & 0 deletions crates/git-vendor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [0.2.0](https://github.com/git-ents/git-vendor/compare/git-vendor-v0.1.1...git-vendor-v0.2.0) (2026-03-11)


### Features

* Add --path flag as default destination prefix for all patterns ([24c9c0b](https://github.com/git-ents/git-vendor/commit/24c9c0b6254b19b6216fec3243d58d04cce7d80c))
* Add pattern-to-path mapping via colon syntax ([24c9c0b](https://github.com/git-ents/git-vendor/commit/24c9c0b6254b19b6216fec3243d58d04cce7d80c))
* Place new upstream files at computed mapped paths during merge ([24c9c0b](https://github.com/git-ents/git-vendor/commit/24c9c0b6254b19b6216fec3243d58d04cce7d80c))


### Bug Fixes

* Omit summary when only one vendor is configured ([9c9f012](https://github.com/git-ents/git-vendor/commit/9c9f012f2d2252ec0422dc718cc04071e92cb8f8)), closes [#16](https://github.com/git-ents/git-vendor/issues/16)
* Resolve --path relative to CWD within workdir ([30b78bc](https://github.com/git-ents/git-vendor/commit/30b78bcbacd801ccf0ad7c14befa57bedc7620cd)), closes [#19](https://github.com/git-ents/git-vendor/issues/19)
* Sort gitattributes entries by pattern for deterministic ordering ([8fbe454](https://github.com/git-ents/git-vendor/commit/8fbe45474f94aad87d7ad96315d9545578477981)), closes [#18](https://github.com/git-ents/git-vendor/issues/18)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* git-set-attr bumped from 0.1.1 to 0.1.2

## [0.1.1](https://github.com/git-ents/git-vendor/compare/git-vendor-v0.1.0...git-vendor-v0.1.1) (2026-03-08)


Expand Down
4 changes: 2 additions & 2 deletions crates/git-vendor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rustdoc-args = ["--cfg", "docsrs"]

[package]
name = "git-vendor"
version = "0.1.1"
version = "0.2.0"
description = "An in-source vendoring alternative to Git submodules and subtrees."
repository = "https://github.com/git-ents/git-vendor"
documentation = "https://docs.rs/git-vendor"
Expand All @@ -24,7 +24,7 @@ path = "src/main.rs"
clap.workspace = true
clap_mangen.workspace = true
git2.workspace = true
git-set-attr = { version = "0.1.1", path = "../git-set-attr" }
git-set-attr = { version = "0.1.2", path = "../git-set-attr" }
tempfile.workspace = true
git-filter-tree = "0.3.1"
globset.workspace = true
Loading