From 90a1f324464de499a00c5faf542f0408d0cf0f7c Mon Sep 17 00:00:00 2001 From: Maarten Flippo Date: Mon, 19 Jan 2026 16:57:38 +0100 Subject: [PATCH] chore: release pumpkin-solver 0.2.3 --- .release-please-manifest.json | 2 +- pumpkin-solver/CHANGELOG.md | 14 ++++++++++++++ pumpkin-solver/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4880f382d..254518f08 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "pumpkin-solver": "0.2.2", + "pumpkin-solver": "0.2.3", "drcp-format": "0.3.0", "pumpkin-crates/core": "0.2.2" } diff --git a/pumpkin-solver/CHANGELOG.md b/pumpkin-solver/CHANGELOG.md index 3bf4bd218..f3595d779 100644 --- a/pumpkin-solver/CHANGELOG.md +++ b/pumpkin-solver/CHANGELOG.md @@ -5,6 +5,20 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.3](https://github.com/ConSol-Lab/Pumpkin/compare/pumpkin-solver-v0.2.2...pumpkin-solver-v0.2.3) (2026-01-19) + + +### Features + +* Extract propagators into separate crate ([#337](https://github.com/ConSol-Lab/Pumpkin/issues/337)) ([8153051](https://github.com/ConSol-Lab/Pumpkin/commit/8153051b408cd314661d0c6ca4a5837934360ed2)) +* **pumpkin-solver-py:** Support warm starting for optimisation models ([#344](https://github.com/ConSol-Lab/Pumpkin/issues/344)) ([04e6b96](https://github.com/ConSol-Lab/Pumpkin/commit/04e6b963c2bcebb0b179966f903c626912dbee5f)) + + +### Bug Fixes + +* Off-by-one error when explaining empty domain conflict ([#322](https://github.com/ConSol-Lab/Pumpkin/issues/322)) ([c3739c4](https://github.com/ConSol-Lab/Pumpkin/commit/c3739c427406f8f46a743c35233664028318f73f)), closes [#321](https://github.com/ConSol-Lab/Pumpkin/issues/321) +* **pumpkin-solver:** Stop search when a SIGTERM signal is received ([#324](https://github.com/ConSol-Lab/Pumpkin/issues/324)) ([4f6b04c](https://github.com/ConSol-Lab/Pumpkin/commit/4f6b04c20d11e2f9eefb9a621422fb0df8b85424)) + ## [0.2.2](https://github.com/ConSol-Lab/Pumpkin/compare/pumpkin-solver-v0.2.1...pumpkin-solver-v0.2.2) (2025-11-10) diff --git a/pumpkin-solver/Cargo.toml b/pumpkin-solver/Cargo.toml index e31497273..89eb71ddf 100644 --- a/pumpkin-solver/Cargo.toml +++ b/pumpkin-solver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pumpkin-solver" -version = "0.2.2" +version = "0.2.3" description = "The Pumpkin combinatorial optimisation solver library." readme = "../README.md" authors.workspace = true