Skip to content

Commit c64c915

Browse files
committed
Release 2.9.4
1 parent eb6377f commit c64c915

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

src/data/release.mdx

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
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!
1+
- Add new builtin functions for array manipulation: `select_from_index_X`
2+
can slice an array with a non-contiguous set of indices, and
3+
`concat_index_X` can concatenate two arrays along a specified index.
4+
- Add option type versions of bin packing and cumulatives constraints.
5+
- Remove `bool_xor` with two arguments from the FlatZinc builtins.
6+
It is never output into FlatZinc by the compiler and violated the rule that
7+
FlatZinc builtins are not overloaded (:bugref:`913`). Also remove
8+
some other duplicates and incorrect overloads from `flatzinc_builtins.mzn`.
9+
- Add includes for header files where symbols are required, in order to
10+
avoid issues with some compilers.
11+
- Fix AST string allocation to avoid warnings about writing into unallocated
12+
memory.
13+
- Fix float literal parsing, making it consistent across all platforms (:bugref:`941`).
14+
- Plus 15 bugfixes!
1015

1116
export default function Release({ children }) {
1217
return (

src/data/version.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const releaseList = [
2+
['2.9.4', '29 September 2025'],
23
['2.9.3', '23 May 2025'],
34
['2.9.2', '6 March 2025'],
45
['2.9.1', '3 March 2025'],

0 commit comments

Comments
 (0)