Skip to content

Commit df59f57

Browse files
committed
Release 2.9.3
1 parent 0cd18e4 commit df59f57

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

src/data/release.mdx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
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!
510

611
export default function Release({ children }) {
712
return (

src/data/version.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const releaseList = [
2+
['2.9.3', '23 May 2025'],
23
['2.9.2', '6 March 2025'],
34
['2.9.1', '3 March 2025'],
45
['2.9.0', '11 February 2025'],
@@ -26,7 +27,7 @@ export const releases = releaseList.map(([version, date]) => ({
2627

2728
export const requirement = {
2829
windows: 'Windows 10',
29-
linux: 'Ubuntu 20.04',
30+
linux: 'Ubuntu 22.04',
3031
macOS: 'macOS 11',
3132
}
3233

0 commit comments

Comments
 (0)