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
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,44 @@ 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.69.0] - 2026-07-15
### ✨ Highlights

This release reworks how the build wrapper script is generated:
it is now composed from scoped sections that each carry their own interpreter and environment,
laying the groundwork for running multiple isolated units of work in a single build.

We also fixed the `split` filter in Jinja templates to return a real list,
as specified in [CEP 39](https://github.com/conda/ceps/blob/main/cep-0039.md),
so negative indexing and slicing like `(version | split('.'))[-1]` work as expected.

### Added

- Detect and warn when patches are already applied by @wolfv in [#2635](https://github.com/prefix-dev/rattler-build/pull/2635)
- Add tool-specific config extension and default config discovery by @wolfv in [#2636](https://github.com/prefix-dev/rattler-build/pull/2636)
- Use rattler_git's built-in LFS support in the source cache by @wolfv in [#2648](https://github.com/prefix-dev/rattler-build/pull/2648)


### Changed

- Compose the build wrapper from scoped sections by @baszalmstra in [#2539](https://github.com/prefix-dev/rattler-build/pull/2539)
- Negative indexing and slicing on split filter results by @wolfv in [#2644](https://github.com/prefix-dev/rattler-build/pull/2644)


### Documentation

- Package format differences and authentication resolution by @wolfv in [#2628](https://github.com/prefix-dev/rattler-build/pull/2628)


### Fixed

- Trailing spaces in format_requirement for packages without versions by @wolfv in [#2634](https://github.com/prefix-dev/rattler-build/pull/2634)
- Consolidate license_file and license_file_late_bound into single LicenseFiles type by @wolfv in [#2624](https://github.com/prefix-dev/rattler-build/pull/2624)
- Treat empty/null-like `noarch` as absent; hint `default` filter for undefined variant keys by @wolfv in [#2626](https://github.com/prefix-dev/rattler-build/pull/2626)
- Set `LIBRARY_PREFIX` and friends for noarch builds on Windows by @baszalmstra in [#2655](https://github.com/prefix-dev/rattler-build/pull/2655)



## [0.68.0] - 2026-07-06
### ✨ 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.68.0"
version = "0.69.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.68.0"
version = "0.69.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.68.0"
version = "0.69.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.68.0"
current = "0.69.0"

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