Skip to content

Commit 85e89ae

Browse files
committed
bump to 0.7.0, update changelog
1 parent 2c9966a commit 85e89ae

File tree

2 files changed

+36
-14
lines changed

2 files changed

+36
-14
lines changed

changelog.md

+35-13
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,35 @@
1-
# Ortools integration & Bug-fixing
2-
Or-tools is now the default backend
3-
## Enhancements
4-
- A new `flatten_model` transformation
5-
- Generic global constraint decompositions
6-
- Complete integration with OR-Tools
7-
- Adding more examples
8-
9-
## Changes
10-
- Documentation improvements.
11-
12-
## Fixes
13-
- Multiple bug fixes related to the integration of OR-Tools
1+
# Change log
2+
3+
## 0.7.0
4+
5+
### Major
6+
* Reworked solver interface so that it is near-identical to model interface
7+
* Or-tools interface allows unsat core extraction!
8+
* Add MARCO MUS enumerate as example of unsat core extraction usage
9+
* variables now take a name= argument for variable name (easier debugging)
10+
11+
### Enhancements
12+
* Added more examples: bibd, npuzzle
13+
* Added 'table' global constraint
14+
* Added support for time\_limit when calling solve()
15+
* Added more tests on the flattening
16+
* Add solution hints to ortools interface
17+
* Improved documentation
18+
19+
### Bugfixes
20+
* multiple fixes and improvements in ortools interface
21+
* fix module (thanks HakanK)
22+
* various bugfixes
23+
24+
## 0.6.0
25+
26+
### Major
27+
28+
* Or-tools is now the default backend
29+
30+
### Enhancements
31+
* A new `flat normal form` with `flatten_model` transformation
32+
* Generic global constraint decompositions
33+
* Adding more examples
34+
* Documentation improvements.
35+
* Multiple bug fixes related to the integration of OR-Tools

cpmpy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# __version__ = "%d.%d.%d.%s" % VERSION if len(VERSION) == 4 else \
77
# "%d.%d.%d" % VERSION
8-
__version__ = "0.6.0"
8+
__version__ = "0.7.0"
99

1010
from .expressions import *
1111
from .variables import *

0 commit comments

Comments
 (0)