Skip to content
Open
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
285 changes: 125 additions & 160 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,13 @@ 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_core = { path = "crates/rattler_build_core", version = "=0.2.10", 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 = { path = "crates/rattler_build_recipe", version = "=0.1.11" }
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_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.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" }
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_build_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ 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-16

### Fixed

- set `LIBRARY_PREFIX` and friends for noarch builds on Windows ([#2655](https://github.com/prefix-dev/rattler-build/pull/2655))

## [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
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_build_package/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-16

### Other

- updated the following local packages: rattler_build_recipe

## [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
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_build_recipe/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-16

### Other

- updated the following local packages: rattler_build_script

## [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
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_recipe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_build_script/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ 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-16

### 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
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_script/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_build_source_cache/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_source_cache-v0.1.9...rattler_build_source_cache-v0.1.10) - 2026-07-16

### Added

- use rattler_git's built-in LFS support in the source cache ([#2648](https://github.com/prefix-dev/rattler-build/pull/2648))

## [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
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_source_cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions py-rattler-build/rust/Cargo.lock

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

Loading