From f23a96991e102e4f55bad315f6bc5fccb99650b4 Mon Sep 17 00:00:00 2001 From: "prefix-dev-release-bot[bot]" <266702369+prefix-dev-release-bot[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 13:21:04 +0000 Subject: [PATCH 1/2] chore: bump & publish crates --- Cargo.lock | 28 +++++++++---------- Cargo.toml | 22 +++++++-------- crates/rattler_build_allocator/CHANGELOG.md | 6 ++++ crates/rattler_build_allocator/Cargo.toml | 2 +- crates/rattler_build_core/CHANGELOG.md | 16 +++++++++++ crates/rattler_build_core/Cargo.toml | 2 +- crates/rattler_build_jinja/CHANGELOG.md | 6 ++++ crates/rattler_build_jinja/Cargo.toml | 2 +- crates/rattler_build_networking/CHANGELOG.md | 6 ++++ crates/rattler_build_networking/Cargo.toml | 2 +- crates/rattler_build_package/CHANGELOG.md | 6 ++++ crates/rattler_build_package/Cargo.toml | 2 +- crates/rattler_build_recipe/CHANGELOG.md | 6 ++++ crates/rattler_build_recipe/Cargo.toml | 2 +- .../CHANGELOG.md | 6 ++++ .../rattler_build_recipe_generator/Cargo.toml | 2 +- crates/rattler_build_script/CHANGELOG.md | 10 +++++++ crates/rattler_build_script/Cargo.toml | 2 +- .../rattler_build_source_cache/CHANGELOG.md | 10 +++++++ crates/rattler_build_source_cache/Cargo.toml | 2 +- crates/rattler_build_types/CHANGELOG.md | 6 ++++ crates/rattler_build_types/Cargo.toml | 2 +- .../rattler_build_variant_config/CHANGELOG.md | 6 ++++ .../rattler_build_variant_config/Cargo.toml | 2 +- crates/rattler_build_yaml_parser/CHANGELOG.md | 6 ++++ crates/rattler_build_yaml_parser/Cargo.toml | 2 +- 26 files changed, 127 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 01a5612e1..164467c73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1995,9 +1995,9 @@ dependencies = [ [[package]] name = "either" -version = "1.16.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" +checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d" [[package]] name = "elliptic-curve" @@ -4871,7 +4871,7 @@ dependencies = [ [[package]] name = "rattler_build_allocator" -version = "0.1.1" +version = "0.1.2" dependencies = [ "mimalloc", "tikv-jemallocator", @@ -4879,7 +4879,7 @@ dependencies = [ [[package]] name = "rattler_build_core" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anyhow", "arwen-codesign", @@ -4978,7 +4978,7 @@ dependencies = [ [[package]] name = "rattler_build_jinja" -version = "0.1.10" +version = "0.1.11" dependencies = [ "anyhow", "fs-err", @@ -5001,7 +5001,7 @@ dependencies = [ [[package]] name = "rattler_build_networking" -version = "0.1.9" +version = "0.1.10" dependencies = [ "astral-reqwest-middleware", "astral-reqwest-retry", @@ -5013,7 +5013,7 @@ dependencies = [ [[package]] name = "rattler_build_package" -version = "0.1.10" +version = "0.1.11" dependencies = [ "content_inspector", "fs-err", @@ -5044,7 +5044,7 @@ dependencies = [ [[package]] name = "rattler_build_recipe" -version = "0.1.10" +version = "0.1.11" dependencies = [ "clap", "fs-err", @@ -5080,7 +5080,7 @@ dependencies = [ [[package]] name = "rattler_build_recipe_generator" -version = "0.1.8" +version = "0.1.9" dependencies = [ "async-once-cell", "async-recursion", @@ -5112,7 +5112,7 @@ dependencies = [ [[package]] name = "rattler_build_script" -version = "0.2.6" +version = "0.2.7" dependencies = [ "clap", "console", @@ -5138,7 +5138,7 @@ dependencies = [ [[package]] name = "rattler_build_source_cache" -version = "0.1.9" +version = "0.1.10" dependencies = [ "astral-reqwest-middleware", "astral-reqwest-retry", @@ -5178,7 +5178,7 @@ dependencies = [ [[package]] name = "rattler_build_types" -version = "0.1.9" +version = "0.1.10" dependencies = [ "fs-err", "globset", @@ -5194,7 +5194,7 @@ dependencies = [ [[package]] name = "rattler_build_variant_config" -version = "0.1.10" +version = "0.1.11" dependencies = [ "fs-err", "insta", @@ -5216,7 +5216,7 @@ dependencies = [ [[package]] name = "rattler_build_yaml_parser" -version = "0.1.10" +version = "0.1.11" dependencies = [ "insta", "marked-yaml", diff --git a/Cargo.toml b/Cargo.toml index cf83adcd9..a56076d9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -168,17 +168,17 @@ rattler_menuinst = "0.2" # Internal rattler-build crates -rattler_build_allocator = { path = "crates/rattler_build_allocator", version = "=0.1.1" } -rattler_build_core = { path = "crates/rattler_build_core", version = "=0.2.9", default-features = false } -rattler_build_jinja = { path = "crates/rattler_build_jinja", version = "=0.1.10" } -rattler_build_networking = { path = "crates/rattler_build_networking", version = "=0.1.9" } -rattler_build_recipe = { path = "crates/rattler_build_recipe", version = "=0.1.10" } -rattler_build_recipe_generator = { path = "crates/rattler_build_recipe_generator", version = "=0.1.8", default-features = false } -rattler_build_script = { path = "crates/rattler_build_script", version = "=0.2.6", default-features = false } -rattler_build_source_cache = { path = "crates/rattler_build_source_cache", version = "=0.1.9", default-features = false } -rattler_build_types = { path = "crates/rattler_build_types", version = "=0.1.9" } -rattler_build_variant_config = { path = "crates/rattler_build_variant_config", version = "=0.1.10" } -rattler_build_yaml_parser = { path = "crates/rattler_build_yaml_parser", version = "=0.1.10" } +rattler_build_allocator = { path = "crates/rattler_build_allocator", version = "=0.1.2" } +rattler_build_core = { path = "crates/rattler_build_core", version = "=0.2.10", default-features = false } +rattler_build_jinja = { path = "crates/rattler_build_jinja", version = "=0.1.11" } +rattler_build_networking = { path = "crates/rattler_build_networking", version = "=0.1.10" } +rattler_build_recipe = { path = "crates/rattler_build_recipe", version = "=0.1.11" } +rattler_build_recipe_generator = { path = "crates/rattler_build_recipe_generator", version = "=0.1.9", default-features = false } +rattler_build_script = { path = "crates/rattler_build_script", version = "=0.2.7", default-features = false } +rattler_build_source_cache = { path = "crates/rattler_build_source_cache", version = "=0.1.10", default-features = false } +rattler_build_types = { path = "crates/rattler_build_types", version = "=0.1.10" } +rattler_build_variant_config = { path = "crates/rattler_build_variant_config", version = "=0.1.11" } +rattler_build_yaml_parser = { path = "crates/rattler_build_yaml_parser", version = "=0.1.11" } [features] default = ['rustls', 'recipe-generation', 's3', 'sigstore'] diff --git a/crates/rattler_build_allocator/CHANGELOG.md b/crates/rattler_build_allocator/CHANGELOG.md index 87f7840a6..fde2a6574 100644 --- a/crates/rattler_build_allocator/CHANGELOG.md +++ b/crates/rattler_build_allocator/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/prefix-dev/rattler-build/compare/rattler_build_allocator-v0.1.1...rattler_build_allocator-v0.1.2) - 2026-07-25 + +### Other + +- update dependencies and Rust toolchain to 1.97.1 ([#2679](https://github.com/prefix-dev/rattler-build/pull/2679)) + ## [0.1.1](https://github.com/prefix-dev/rattler-build/compare/rattler_build_allocator-v0.1.0...rattler_build_allocator-v0.1.1) - 2026-03-13 ### Other diff --git a/crates/rattler_build_allocator/Cargo.toml b/crates/rattler_build_allocator/Cargo.toml index 50d2905d6..d001685a2 100644 --- a/crates/rattler_build_allocator/Cargo.toml +++ b/crates/rattler_build_allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_allocator" -version = "0.1.1" +version = "0.1.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_core/CHANGELOG.md b/crates/rattler_build_core/CHANGELOG.md index 012bd30c8..a217198fa 100644 --- a/crates/rattler_build_core/CHANGELOG.md +++ b/crates/rattler_build_core/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_core-v0.2.9...rattler_build_core-v0.2.10) - 2026-07-25 + +### Added + +- add iOS and Android platform support ([#2682](https://github.com/prefix-dev/rattler-build/pull/2682)) +- make CMD subprocesses match `build_platform` architecture when running emulated ([#2664](https://github.com/prefix-dev/rattler-build/pull/2664)) + +### Fixed + +- package content tests for ios ([#2684](https://github.com/prefix-dev/rattler-build/pull/2684)) +- set `LIBRARY_PREFIX` and friends for noarch builds on Windows ([#2655](https://github.com/prefix-dev/rattler-build/pull/2655)) + +### Other + +- update dependencies and Rust toolchain to 1.97.1 ([#2679](https://github.com/prefix-dev/rattler-build/pull/2679)) + ## [0.2.9](https://github.com/prefix-dev/rattler-build/compare/rattler_build_core-v0.2.8...rattler_build_core-v0.2.9) - 2026-07-11 ### Added diff --git a/crates/rattler_build_core/Cargo.toml b/crates/rattler_build_core/Cargo.toml index c87714629..d97610933 100644 --- a/crates/rattler_build_core/Cargo.toml +++ b/crates/rattler_build_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_core" -version = "0.2.9" +version = "0.2.10" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_jinja/CHANGELOG.md b/crates/rattler_build_jinja/CHANGELOG.md index aa3399e35..45a5fd7a2 100644 --- a/crates/rattler_build_jinja/CHANGELOG.md +++ b/crates/rattler_build_jinja/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/prefix-dev/rattler-build/compare/rattler_build_jinja-v0.1.10...rattler_build_jinja-v0.1.11) - 2026-07-25 + +### Added + +- add iOS and Android platform support ([#2682](https://github.com/prefix-dev/rattler-build/pull/2682)) + ## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_jinja-v0.1.9...rattler_build_jinja-v0.1.10) - 2026-07-11 ### Added diff --git a/crates/rattler_build_jinja/Cargo.toml b/crates/rattler_build_jinja/Cargo.toml index 392163479..16cd67986 100644 --- a/crates/rattler_build_jinja/Cargo.toml +++ b/crates/rattler_build_jinja/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_jinja" -version = "0.1.10" +version = "0.1.11" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_networking/CHANGELOG.md b/crates/rattler_build_networking/CHANGELOG.md index 40c3e5d05..0909e1f6d 100644 --- a/crates/rattler_build_networking/CHANGELOG.md +++ b/crates/rattler_build_networking/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_networking-v0.1.9...rattler_build_networking-v0.1.10) - 2026-07-25 + +### Other + +- update Cargo.toml dependencies + ## [0.1.9](https://github.com/prefix-dev/rattler-build/compare/rattler_build_networking-v0.1.8...rattler_build_networking-v0.1.9) - 2026-07-11 ### Other diff --git a/crates/rattler_build_networking/Cargo.toml b/crates/rattler_build_networking/Cargo.toml index fb1f08b66..3e8ec3154 100644 --- a/crates/rattler_build_networking/Cargo.toml +++ b/crates/rattler_build_networking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_networking" -version = "0.1.9" +version = "0.1.10" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rattler_build_package/CHANGELOG.md b/crates/rattler_build_package/CHANGELOG.md index a1d2dfeca..5abd2d7d7 100644 --- a/crates/rattler_build_package/CHANGELOG.md +++ b/crates/rattler_build_package/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/prefix-dev/rattler-build/compare/rattler_build_package-v0.1.10...rattler_build_package-v0.1.11) - 2026-07-25 + +### Other + +- update Cargo.toml dependencies + ## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_package-v0.1.9...rattler_build_package-v0.1.10) - 2026-07-11 ### Other diff --git a/crates/rattler_build_package/Cargo.toml b/crates/rattler_build_package/Cargo.toml index d536d65ec..0d8434e29 100644 --- a/crates/rattler_build_package/Cargo.toml +++ b/crates/rattler_build_package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_package" -version = "0.1.10" +version = "0.1.11" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_recipe/CHANGELOG.md b/crates/rattler_build_recipe/CHANGELOG.md index b9ead1ab2..e687c7612 100644 --- a/crates/rattler_build_recipe/CHANGELOG.md +++ b/crates/rattler_build_recipe/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/prefix-dev/rattler-build/compare/rattler_build_recipe-v0.1.10...rattler_build_recipe-v0.1.11) - 2026-07-25 + +### Other + +- update dependencies and Rust toolchain to 1.97.1 ([#2679](https://github.com/prefix-dev/rattler-build/pull/2679)) + ## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_recipe-v0.1.9...rattler_build_recipe-v0.1.10) - 2026-07-11 ### Added diff --git a/crates/rattler_build_recipe/Cargo.toml b/crates/rattler_build_recipe/Cargo.toml index aaf070a90..45da8d915 100644 --- a/crates/rattler_build_recipe/Cargo.toml +++ b/crates/rattler_build_recipe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_recipe" -version = "0.1.10" +version = "0.1.11" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_recipe_generator/CHANGELOG.md b/crates/rattler_build_recipe_generator/CHANGELOG.md index 71a161c88..e317d51f0 100644 --- a/crates/rattler_build_recipe_generator/CHANGELOG.md +++ b/crates/rattler_build_recipe_generator/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.9](https://github.com/prefix-dev/rattler-build/compare/rattler_build_recipe_generator-v0.1.8...rattler_build_recipe_generator-v0.1.9) - 2026-07-25 + +### Other + +- update dependencies and Rust toolchain to 1.97.1 ([#2679](https://github.com/prefix-dev/rattler-build/pull/2679)) + ## [0.1.8](https://github.com/prefix-dev/rattler-build/compare/rattler_build_recipe_generator-v0.1.7...rattler_build_recipe_generator-v0.1.8) - 2026-07-11 ### Added diff --git a/crates/rattler_build_recipe_generator/Cargo.toml b/crates/rattler_build_recipe_generator/Cargo.toml index 76e4ea97b..024671dec 100644 --- a/crates/rattler_build_recipe_generator/Cargo.toml +++ b/crates/rattler_build_recipe_generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_recipe_generator" -version = "0.1.8" +version = "0.1.9" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_script/CHANGELOG.md b/crates/rattler_build_script/CHANGELOG.md index 9626f85e7..fad8c9f63 100644 --- a/crates/rattler_build_script/CHANGELOG.md +++ b/crates/rattler_build_script/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.7](https://github.com/prefix-dev/rattler-build/compare/rattler_build_script-v0.2.6...rattler_build_script-v0.2.7) - 2026-07-25 + +### Added + +- make CMD subprocesses match `build_platform` architecture when running emulated ([#2664](https://github.com/prefix-dev/rattler-build/pull/2664)) + +### Other + +- run brush scripts with -euxo pipefail by default ([#2653](https://github.com/prefix-dev/rattler-build/pull/2653)) + ## [0.2.6](https://github.com/prefix-dev/rattler-build/compare/rattler_build_script-v0.2.5...rattler_build_script-v0.2.6) - 2026-07-11 ### Added diff --git a/crates/rattler_build_script/Cargo.toml b/crates/rattler_build_script/Cargo.toml index f781b17ae..84fe3de0a 100644 --- a/crates/rattler_build_script/Cargo.toml +++ b/crates/rattler_build_script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_script" -version = "0.2.6" +version = "0.2.7" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_source_cache/CHANGELOG.md b/crates/rattler_build_source_cache/CHANGELOG.md index 132887ab1..b0cb315af 100644 --- a/crates/rattler_build_source_cache/CHANGELOG.md +++ b/crates/rattler_build_source_cache/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_source_cache-v0.1.9...rattler_build_source_cache-v0.1.10) - 2026-07-25 + +### Added + +- use rattler_git's built-in LFS support in the source cache ([#2648](https://github.com/prefix-dev/rattler-build/pull/2648)) + +### Other + +- update dependencies and Rust toolchain to 1.97.1 ([#2679](https://github.com/prefix-dev/rattler-build/pull/2679)) + ## [0.1.9](https://github.com/prefix-dev/rattler-build/compare/rattler_build_source_cache-v0.1.8...rattler_build_source_cache-v0.1.9) - 2026-07-11 ### Other diff --git a/crates/rattler_build_source_cache/Cargo.toml b/crates/rattler_build_source_cache/Cargo.toml index a5f61af48..f7d479e4b 100644 --- a/crates/rattler_build_source_cache/Cargo.toml +++ b/crates/rattler_build_source_cache/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_source_cache" -version = "0.1.9" +version = "0.1.10" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rattler_build_types/CHANGELOG.md b/crates/rattler_build_types/CHANGELOG.md index 98cd06351..c884665d8 100644 --- a/crates/rattler_build_types/CHANGELOG.md +++ b/crates/rattler_build_types/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_types-v0.1.9...rattler_build_types-v0.1.10) - 2026-07-25 + +### Added + +- add iOS and Android platform support ([#2682](https://github.com/prefix-dev/rattler-build/pull/2682)) + ## [0.1.9](https://github.com/prefix-dev/rattler-build/compare/rattler_build_types-v0.1.8...rattler_build_types-v0.1.9) - 2026-07-11 ### Added diff --git a/crates/rattler_build_types/Cargo.toml b/crates/rattler_build_types/Cargo.toml index d535d3761..b3407f2b0 100644 --- a/crates/rattler_build_types/Cargo.toml +++ b/crates/rattler_build_types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_types" -version = "0.1.9" +version = "0.1.10" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_variant_config/CHANGELOG.md b/crates/rattler_build_variant_config/CHANGELOG.md index 1bb5c926f..736f684e2 100644 --- a/crates/rattler_build_variant_config/CHANGELOG.md +++ b/crates/rattler_build_variant_config/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/prefix-dev/rattler-build/compare/rattler_build_variant_config-v0.1.10...rattler_build_variant_config-v0.1.11) - 2026-07-25 + +### Other + +- update Cargo.toml dependencies + ## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_variant_config-v0.1.9...rattler_build_variant_config-v0.1.10) - 2026-07-11 ### Other diff --git a/crates/rattler_build_variant_config/Cargo.toml b/crates/rattler_build_variant_config/Cargo.toml index 347e78141..5bfe81b8d 100644 --- a/crates/rattler_build_variant_config/Cargo.toml +++ b/crates/rattler_build_variant_config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_variant_config" -version = "0.1.10" +version = "0.1.11" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/rattler_build_yaml_parser/CHANGELOG.md b/crates/rattler_build_yaml_parser/CHANGELOG.md index cc6ba248c..b0cd9a8f2 100644 --- a/crates/rattler_build_yaml_parser/CHANGELOG.md +++ b/crates/rattler_build_yaml_parser/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/prefix-dev/rattler-build/compare/rattler_build_yaml_parser-v0.1.10...rattler_build_yaml_parser-v0.1.11) - 2026-07-25 + +### Other + +- update Cargo.toml dependencies + ## [0.1.10](https://github.com/prefix-dev/rattler-build/compare/rattler_build_yaml_parser-v0.1.9...rattler_build_yaml_parser-v0.1.10) - 2026-07-11 ### Fixed diff --git a/crates/rattler_build_yaml_parser/Cargo.toml b/crates/rattler_build_yaml_parser/Cargo.toml index 1e2a0ed78..a473665ca 100644 --- a/crates/rattler_build_yaml_parser/Cargo.toml +++ b/crates/rattler_build_yaml_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rattler_build_yaml_parser" -version = "0.1.10" +version = "0.1.11" edition.workspace = true license.workspace = true repository.workspace = true From 77609038bb94b5a3875f9f69f9d7013c48e4afbf Mon Sep 17 00:00:00 2001 From: "prefix-dev-release-bot[bot]" Date: Sat, 25 Jul 2026 13:21:09 +0000 Subject: [PATCH 2/2] chore: sync py-rattler-build Cargo.lock --- py-rattler-build/rust/Cargo.lock | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/py-rattler-build/rust/Cargo.lock b/py-rattler-build/rust/Cargo.lock index bc0dc0a09..e2821dd5d 100644 --- a/py-rattler-build/rust/Cargo.lock +++ b/py-rattler-build/rust/Cargo.lock @@ -4695,7 +4695,7 @@ dependencies = [ [[package]] name = "rattler_build_core" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anyhow", "arwen-codesign", @@ -4778,7 +4778,7 @@ dependencies = [ [[package]] name = "rattler_build_jinja" -version = "0.1.10" +version = "0.1.11" dependencies = [ "fs-err", "indexmap 2.14.0", @@ -4798,7 +4798,7 @@ dependencies = [ [[package]] name = "rattler_build_networking" -version = "0.1.9" +version = "0.1.10" dependencies = [ "astral-reqwest-middleware", "astral-reqwest-retry", @@ -4809,7 +4809,7 @@ dependencies = [ [[package]] name = "rattler_build_package" -version = "0.1.10" +version = "0.1.11" dependencies = [ "content_inspector", "fs-err", @@ -4837,7 +4837,7 @@ dependencies = [ [[package]] name = "rattler_build_recipe" -version = "0.1.10" +version = "0.1.11" dependencies = [ "fs-err", "globset", @@ -4870,7 +4870,7 @@ dependencies = [ [[package]] name = "rattler_build_recipe_generator" -version = "0.1.8" +version = "0.1.9" dependencies = [ "async-once-cell", "async-recursion", @@ -4900,7 +4900,7 @@ dependencies = [ [[package]] name = "rattler_build_script" -version = "0.2.6" +version = "0.2.7" dependencies = [ "clap", "console", @@ -4923,7 +4923,7 @@ dependencies = [ [[package]] name = "rattler_build_source_cache" -version = "0.1.9" +version = "0.1.10" dependencies = [ "astral-reqwest-middleware", "astral-reqwest-retry", @@ -4962,7 +4962,7 @@ dependencies = [ [[package]] name = "rattler_build_types" -version = "0.1.9" +version = "0.1.10" dependencies = [ "globset", "itertools 0.15.0", @@ -4976,7 +4976,7 @@ dependencies = [ [[package]] name = "rattler_build_variant_config" -version = "0.1.10" +version = "0.1.11" dependencies = [ "fs-err", "marked-yaml", @@ -4995,7 +4995,7 @@ dependencies = [ [[package]] name = "rattler_build_yaml_parser" -version = "0.1.10" +version = "0.1.11" dependencies = [ "marked-yaml", "miette",