From 061c737ed53b884870e3ecb27dccc95a1a0b6de2 Mon Sep 17 00:00:00 2001 From: "robot-yavanna[bot]" <264059672+robot-yavanna[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 02:20:27 +0000 Subject: [PATCH] chore: release main --- .config/release-please-manifest.json | 4 ++-- Cargo.lock | 4 ++-- crates/git-set-attr/CHANGELOG.md | 7 +++++++ crates/git-set-attr/Cargo.toml | 2 +- crates/git-vendor/CHANGELOG.md | 23 +++++++++++++++++++++++ crates/git-vendor/Cargo.toml | 4 ++-- 6 files changed, 37 insertions(+), 7 deletions(-) diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index c399351..ac48b12 100644 --- a/.config/release-please-manifest.json +++ b/.config/release-please-manifest.json @@ -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" } diff --git a/Cargo.lock b/Cargo.lock index 0d691ff..560a250 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,7 +250,7 @@ dependencies = [ [[package]] name = "git-set-attr" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap", "clap_mangen", @@ -259,7 +259,7 @@ dependencies = [ [[package]] name = "git-vendor" -version = "0.1.1" +version = "0.2.0" dependencies = [ "clap", "clap_mangen", diff --git a/crates/git-set-attr/CHANGELOG.md b/crates/git-set-attr/CHANGELOG.md index 5eebbd3..c38be50 100644 --- a/crates/git-set-attr/CHANGELOG.md +++ b/crates/git-set-attr/CHANGELOG.md @@ -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) diff --git a/crates/git-set-attr/Cargo.toml b/crates/git-set-attr/Cargo.toml index a485c57..b09f845 100644 --- a/crates/git-set-attr/Cargo.toml +++ b/crates/git-set-attr/Cargo.toml @@ -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" diff --git a/crates/git-vendor/CHANGELOG.md b/crates/git-vendor/CHANGELOG.md index 35c5b2e..42379ca 100644 --- a/crates/git-vendor/CHANGELOG.md +++ b/crates/git-vendor/CHANGELOG.md @@ -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) diff --git a/crates/git-vendor/Cargo.toml b/crates/git-vendor/Cargo.toml index f615439..11e62df 100644 --- a/crates/git-vendor/Cargo.toml +++ b/crates/git-vendor/Cargo.toml @@ -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" @@ -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