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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.71.0] - 2026-07-27
### ✨ Highlights

This release adds iOS and Android platform support and improves cross-architecture Windows command execution. It also fixes cache-output build setting inheritance and defers tests until transitive outputs are available.



### Added

- Make CMD subprocesses match `build_platform` architecture when running emulated by @baszalmstra in [#2664](https://github.com/prefix-dev/rattler-build/pull/2664)
- Add iOS and Android platform support by @wolfv in [#2682](https://github.com/prefix-dev/rattler-build/pull/2682)


### Fixed

- Package content tests for ios by @wolfv in [#2684](https://github.com/prefix-dev/rattler-build/pull/2684)
- Defer tests until transitive outputs are built by @wolfv in [#2686](https://github.com/prefix-dev/rattler-build/pull/2686)
- Stop wrapping solver errors by @wolfv in [#2687](https://github.com/prefix-dev/rattler-build/pull/2687)
- Inherit all top-level build settings for cache outputs by @Hofer-Julian in [#2641](https://github.com/prefix-dev/rattler-build/pull/2641)


### Removed

- Remove the rattler-build-conda-compat integration API by @Hofer-Julian in [#2675](https://github.com/prefix-dev/rattler-build/pull/2675)



## [0.70.1] - 2026-07-23
### ✨ Highlights

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler-build"
version = "0.70.1"
version = "0.71.0"
authors = ["rattler-build contributors <hi@prefix.dev>"]
repository = "https://github.com/prefix-dev/rattler-build"
edition = "2024"
Expand Down
2 changes: 1 addition & 1 deletion py-rattler-build/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "py-rattler-build"
version = "0.70.1"
version = "0.71.0"
requires-python = ">=3.10"
description = "The fastest way to build conda packages programatically"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions py-rattler-build/rust/Cargo.lock

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

2 changes: 1 addition & 1 deletion py-rattler-build/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-rattler-build"
version = "0.70.1"
version = "0.71.0"
edition = "2024"
license = "BSD-3-Clause"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/prefix-dev/rattler-build"

[version]
current = "0.70.1"
current = "0.71.0"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down