Skip to content

Commit

Permalink
Release notes for v8.8.1 (#1871)
Browse files Browse the repository at this point in the history
- Add release notes
- Update version number & year
  • Loading branch information
flomnes authored Jan 11, 2024
1 parent e4b5762 commit a19f3fa
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,34 @@ 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.1 (01/2024)
--------------------

## Bugfix
* Simplify TS numbers drawings, fix bug related to refresh & local thermal generation (#1752)

## 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)
* 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)
* Renewable containers (#1809)
* 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)

## Doc
* Add precision about `enabled` field in ST storage (#1850)
* Use dedicated URL path for Doxygen, instead of root (#1865)
* Fix HTML generation for readthedocs (#1867)
* Add dark mode switch for Doxygen online documentation (#1792)

8.8.0 (12/2023)
--------------------

Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ cmake_minimum_required(VERSION 3.14) # FetchContent_MakeAvailable
# Version
set(ANTARES_VERSION_HI 8)
set(ANTARES_VERSION_LO 8)
set(ANTARES_VERSION_REVISION 0)
set(ANTARES_VERSION_REVISION 1)

# Beta release
set(ANTARES_BETA 0)
set(ANTARES_RC 0)

set(ANTARES_VERSION_YEAR 2023)
set(ANTARES_VERSION_YEAR 2024)

project(antares
VERSION ${ANTARES_VERSION_HI}.${ANTARES_VERSION_LO}.${ANTARES_VERSION_REVISION})
Expand Down

0 comments on commit a19f3fa

Please sign in to comment.