From 58fc57532e0bbe297622904c6a3d281ff71ec7d2 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Fri, 15 May 2026 15:08:13 +0200 Subject: [PATCH] tag 0.25.0 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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"