diff --git a/CHANGELOG.md b/CHANGELOG.md index 0be09bd..761adaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.25.0] - 2026-05-16 + +* upgrade `toml` dependency + * Sandbox containers are now reused across commands within a single build, avoiding per-command `docker create`/`docker rm` overhead. Every `Command` spawned inside a `BuildBuilder::run` closure runs in the same container, diff --git a/Cargo.toml b/Cargo.toml index e7c4172..27df557 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustwide" -version = "0.24.0" +version = "0.25.0" edition = "2024" build = "build.rs" rust-version = "1.89"