diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 268d1b1add..4f80b0eef7 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,8 +6,16 @@ Antares Changelog ## New Features * Solver logs can be enabled either by the command-line option (--solver-logs) or in the generaldata.ini by setting solver-logs = true under the optimization section [(#1717)](https://github.com/AntaresSimulatorTeam/Antares_Simulator/pull/1717) +8.8.2 +-------------------- + +## Bugfix +* Fix segfault caused by uninitialized `cluster.series.timeseriesNumbers` (#1876). This bug was introduced in v8.8.1 by #1752 +* Bump OR-Tools from 9.5 to 9.8 (fix crash with XPRESS) (#1873) + 8.8.1 (01/2024) -------------------- +/!\ This version has known bugs, please use 8.8.2 instead. ## Bugfix * Simplify TS numbers drawings, fix bug related to refresh & local thermal generation (#1752) @@ -15,15 +23,16 @@ Antares Changelog ## Improvements * Take into account breaking change in OR-Tools's API, enable SCIP & GLPK solvers, bump OR-Tools (#1825). This should improve performances with FICO XPRESS * Fail if OR-Tools solver is not found (#1851) +* Normalize simulation mode Expansion, fix logs (#1771) * Add possibility to release without running any tests (#1852) ## Code quality * Use `std::unordered_map` for tmpDataByArea_ (hydro ventilation) (#1855) * Remove `mutable` keyword from `PROBLEME_HEBDO` (#1846) -* Remove Study::gotFatalError, throw exceptions instead (#1806) +* Remove `Study::gotFatalError`, throw exceptions instead (#1806) * Renewable containers (#1809) -* Use modern style for loops, avoid int cast (#1847) -* Remove YUNI_STATIC_ASSERT (#1863) +* Use modern style `for` loops, avoid int cast (#1847) +* Remove `YUNI_STATIC_ASSERT` (#1863) ## Testing * Add tests on short-term storage/thermal cluster/renewable cluster removal (#1841) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 92e1cedaa8..f6c1cdc5f7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.14) # FetchContent_MakeAvailable # Version set(ANTARES_VERSION_HI 8) set(ANTARES_VERSION_LO 8) -set(ANTARES_VERSION_REVISION 1) +set(ANTARES_VERSION_REVISION 2) # Beta release set(ANTARES_BETA 0)