From 61f172c00d0690a8afbe1d957ad776fcca97e591 Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Wed, 13 Mar 2024 08:25:13 +0100 Subject: [PATCH] Update version --- CHANGELOG.md | 23 ++++------------------- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92ad026..39173d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,17 +2,17 @@ # Unreleased ### Added -- Support `SCIPfreeTransform` to allow for iterated solving. ### Fixed ### Changed ### Remove -## 0.3.1 +# 0.3.2 ### Added -### Fixed +- Support `SCIPfreeTransform` to allow for iterated solving. + +## 0.3.1 ### Changed - Update scip-sys to 0.1.9 to use github hosted binaries of SCIP. -### Removed ## 0.3.0 ### Added @@ -21,8 +21,6 @@ - Added `bundled` feature, to download precompiled SCIP binaries. ### Fixed - Fixed Windows MSVC build. -### Changed -### Removed ## 0.2.6 ### Added @@ -34,27 +32,22 @@ - Free sol after adding in `ScipPtr::add_sol()`. - Allow adding a var in `Solving` mode. - Allow setting parameters from all states. -### Removed ## 0.2.5 ### Added - Primal heuristic plugin. - Solving Model state, to represent methods accessible when during solving. - Moved solution query methods to its own trait. -### Fixed ### Changed - Moved ScipPtr struct and methods to its own module. -### Removed ## 0.2.5 ### Added - Primal heuristic plugin. - Solving Model state, to represent methods accessible when during solving. - Moved solution query methods to its own trait. -### Fixed ### Changed - Moved ScipPtr struct and methods to its own module. -### Removed ## 0.2.4 ### Added @@ -64,12 +57,10 @@ - Methods to add sols. - Event handler plugin support. - Support for quadratic constraints. -### Fixed ### Changed - Removed the prefix "get_" from all getter methods. - Move all public methods and types to root of library (to be easily imported). - Increase coverage. -### Removed ## 0.2.3 @@ -78,8 +69,6 @@ ### Fixed - Fixed sending plugin data to and from SCIP. - Consistent model data across its clones. -### Changed -### Removed ## 0.2.2 @@ -89,10 +78,8 @@ - Node wrapper struct. - `add_priced_var` method. - `get_focus_node` method for `ModelRef`. -### Fixed ### Changed - Simplified `ModelRef` usage. -### Removed ## 0.2.1 @@ -101,7 +88,5 @@ - Branching rule plugin. - Variable pricer plugin. - Set partitioning constraints. -### Fixed ### Changed - Use Variable wrapper in branching candidates. -### Removed diff --git a/Cargo.toml b/Cargo.toml index 682d188..d55f4c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ authors = ["Mohammad Ghannam "] description = "Rust interface for SCIP" license = "Apache-2.0" repository = "https://github.com/scipopt/russcip" -version = "0.3.1" +version = "0.3.2" edition = "2021" exclude = ["data/test/*"]