diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9757fc50..1fc003fc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -71,9 +71,9 @@ jobs: boost_version: 1.84.0 - name: Install SCIP run: | - wget https://github.com/scipopt/scip/releases/download/v920/SCIPOptSuite-9.2.0-Linux-ubuntu22.sh - chmod +x SCIPOptSuite-9.2.0-Linux-ubuntu22.sh - ./SCIPOptSuite-9.2.0-Linux-ubuntu22.sh --skip-license + wget https://github.com/scipopt/scip/releases/download/v923/SCIPOptSuite-9.2.3-Linux-ubuntu22.sh + chmod +x SCIPOptSuite-9.2.3-Linux-ubuntu22.sh + ./SCIPOptSuite-9.2.3-Linux-ubuntu22.sh --skip-license - name: Build SCIP++ run: | CMAKE_PREFIX_PATH=./lib/cmake/scip:./boost/boost/lib/cmake/Boost-1.84.0 cmake -DBUILD_TESTS=ON . diff --git a/changelog.md b/changelog.md index ce6c5a10..da04a7a7 100644 --- a/changelog.md +++ b/changelog.md @@ -4,9 +4,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - [Doc:Unreleased] +## [1.3.0] - 2025-10-08 + ### Changed -- [PR27](https://github.com/scipopt/SCIPpp/pull/27) Update to SCIP 9.2.0. +- [PR37](https://github.com/scipopt/SCIPpp/pull/37) Update to SCIP 9.2.3. ## Added @@ -84,7 +86,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release [Doc:Unreleased]: https://scipopt.github.io/SCIPpp/ -[Unreleased]: https://github.com/scipopt/SCIPpp/compare/1.2.0...main +[Unreleased]: https://github.com/scipopt/SCIPpp/compare/1.3.0...main +[1.3.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.3.0 [1.2.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.2.0 [1.1.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.1.0 [1.0.2]: https://github.com/scipopt/SCIPpp/releases/tag/1.0.2 diff --git a/conanfile.py b/conanfile.py index f6f89ca3..b76c0e38 100644 --- a/conanfile.py +++ b/conanfile.py @@ -67,13 +67,13 @@ def set_version(self): try: self.version = git.run("describe --tags --dirty=-d").strip() except: - self.version = "1.3.0-alpha" + self.version = "1.3.0" def layout(self): cmake_layout(self) def requirements(self): - self.requires("scip/9.2.0", transitive_headers=True) + self.requires("scip/9.2.3", transitive_headers=True) if self.options.with_tests: self.requires("boost/[>=1.84.0 <2]") # required only for tests diff --git a/include/scippp/parameters.hpp b/include/scippp/parameters.hpp index f356a074..62e1d721 100644 --- a/include/scippp/parameters.hpp +++ b/include/scippp/parameters.hpp @@ -1,7 +1,7 @@ #pragma once // This file is automatically generated using gen_constexpr_parameters from the utils -// updated for SCIP 9.2.0 +// updated for SCIP 9.2.3 #include "scippp/param.hpp" #undef INFINITY