Skip to content

Commit eb3357a

Browse files
authored
Merge pull request #37 from scipopt/scip-921
Update to SCIP 9.2.3
2 parents f547796 + b8da63f commit eb3357a

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
boost_version: 1.84.0
7272
- name: Install SCIP
7373
run: |
74-
wget https://github.com/scipopt/scip/releases/download/v920/SCIPOptSuite-9.2.0-Linux-ubuntu22.sh
75-
chmod +x SCIPOptSuite-9.2.0-Linux-ubuntu22.sh
76-
./SCIPOptSuite-9.2.0-Linux-ubuntu22.sh --skip-license
74+
wget https://github.com/scipopt/scip/releases/download/v923/SCIPOptSuite-9.2.3-Linux-ubuntu22.sh
75+
chmod +x SCIPOptSuite-9.2.3-Linux-ubuntu22.sh
76+
./SCIPOptSuite-9.2.3-Linux-ubuntu22.sh --skip-license
7777
- name: Build SCIP++
7878
run: |
7979
CMAKE_PREFIX_PATH=./lib/cmake/scip:./boost/boost/lib/cmake/Boost-1.84.0 cmake -DBUILD_TESTS=ON .

changelog.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
44

55
## [Unreleased] - [Doc:Unreleased]
66

7+
## [1.3.0] - 2025-10-08
8+
79
### Changed
810

9-
- [PR27](https://github.com/scipopt/SCIPpp/pull/27) Update to SCIP 9.2.0.
11+
- [PR37](https://github.com/scipopt/SCIPpp/pull/37) Update to SCIP 9.2.3.
1012

1113
## Added
1214

@@ -84,7 +86,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8486
Initial release
8587
8688
[Doc:Unreleased]: https://scipopt.github.io/SCIPpp/
87-
[Unreleased]: https://github.com/scipopt/SCIPpp/compare/1.2.0...main
89+
[Unreleased]: https://github.com/scipopt/SCIPpp/compare/1.3.0...main
90+
[1.3.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.3.0
8891
[1.2.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.2.0
8992
[1.1.0]: https://github.com/scipopt/SCIPpp/releases/tag/1.1.0
9093
[1.0.2]: https://github.com/scipopt/SCIPpp/releases/tag/1.0.2

conanfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ def set_version(self):
6767
try:
6868
self.version = git.run("describe --tags --dirty=-d").strip()
6969
except:
70-
self.version = "1.3.0-alpha"
70+
self.version = "1.3.0"
7171

7272
def layout(self):
7373
cmake_layout(self)
7474

7575
def requirements(self):
76-
self.requires("scip/9.2.0", transitive_headers=True)
76+
self.requires("scip/9.2.3", transitive_headers=True)
7777
if self.options.with_tests:
7878
self.requires("boost/[>=1.84.0 <2]") # required only for tests
7979

include/scippp/parameters.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
// This file is automatically generated using gen_constexpr_parameters from the utils
4-
// updated for SCIP 9.2.0
4+
// updated for SCIP 9.2.3
55

66
#include "scippp/param.hpp"
77
#undef INFINITY

0 commit comments

Comments
 (0)