Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
7 changes: 5 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion include/scippp/parameters.hpp
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading