File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
- - Fix the packaging of the OR Tools solver on linux distributions (:bugref:` 889 ` ).
2
- - Prevent output of and emit warning for invalid statistics in JSON streaming mode.
3
- - Fix crash in string interpolation (:bugref:` 891 ` ).
4
- - Fix ` row ` and ` col ` functions to use enumerated types instead of ` int ` (:bugref:` 888 ` ).
1
+
2
+ - Add `` mzn_max_version_required `` to enable models to speficy the maximum
3
+ version of MiniZinc required to run the model (:bugref:` 872 ` ).
4
+ - Replace use of `` ptrdiff_t `` with appropriate unsigned integer type.
5
+ - Clarify documentation example use of boolean extra flags in solver
6
+ configuration files.
7
+ - Warnings produced in solution checkers are now output as part of the
8
+ `` checker `` message when running in `` --json-stream `` mode.
9
+ - Plus 20 bugfixes!
5
10
6
11
export default function Release({ children }) {
7
12
return (
Original file line number Diff line number Diff line change 1
1
const releaseList = [
2
+ [ '2.9.3' , '23 May 2025' ] ,
2
3
[ '2.9.2' , '6 March 2025' ] ,
3
4
[ '2.9.1' , '3 March 2025' ] ,
4
5
[ '2.9.0' , '11 February 2025' ] ,
@@ -26,7 +27,7 @@ export const releases = releaseList.map(([version, date]) => ({
26
27
27
28
export const requirement = {
28
29
windows : 'Windows 10' ,
29
- linux : 'Ubuntu 20 .04' ,
30
+ linux : 'Ubuntu 22 .04' ,
30
31
macOS : 'macOS 11' ,
31
32
}
32
33
You can’t perform that action at this time.
0 commit comments