Skip to content

Commit a58b10d

Browse files
author
Christoph Graczyk
committed
Craft Release 3.3.0
1 parent ad25c2b commit a58b10d

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ lib
99
src/pyscipopt/scip.c
1010
__pycache__
1111
.cache
12+
.idea
1213

1314
# Byte-compiled / optimized / DLL files
1415
__pycache__/
@@ -126,4 +127,4 @@ model.lp
126127

127128
# VSCode
128129
.vscode/
129-
.devcontainer/
130+
.devcontainer/

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# CHANGELOG
22
## Unreleased
33
### Added
4+
### Fixed
5+
### Changed
6+
### Removed
7+
8+
## 3.3.0 - 2021-08-23
9+
### Added
410
- add SCIP function `getPseudoBranchCands`
511

612
### Fixed
713
### Changed
814
### Removed
915

10-
1116
## 3.2.2 - 2021-06-21
1217
### Added
1318
- add SCIP functions `getNSolsFound`, `getNSolsFound`, `getNLimSolsFound` and `getNBestSolsFound`

src/pyscipopt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.2.2'
1+
__version__ = '3.3.0'
22

33
# required for Python 3.8 on Windows
44
import os

0 commit comments

Comments
 (0)