diff --git a/CHANGES.md b/CHANGES.md index 5c74c68..82ef4de 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,34 @@ # Changelog + + +## [1.3.1] - (unreleased) + +### Changed + +- feat(cli): add the `--solver-version` option to the command line [`#63`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/63) +- feat(parameters): handle the `--partition` and `--qos` parameters for the `sbatch` command [`#58`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/58) + +### Fixes + +- fix(job-state): consider the `COMPLETING` value as a possible job state [`#61`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/61) +- fix(results-retrieval): handle exceptions in log and ZIP result retrival [`#60`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/60) +- fix(console): use the ISO8601 date format to display messages on the console [`0dbf971`](https://github.com/AntaresSimulatorTeam/antares-launcher/commit/0dbf971b1ccc924f4b11cf44b0e0cf16562622c9) + +### Refactorings + +- refactor: remove IDisplay abstract class [`#64`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/64) + +### Chore + +- replace `COMPETING` with `COMPLETING` (typo) [`6924a2a`](https://github.com/AntaresSimulatorTeam/antares-launcher/commit/6924a2a4ff02c815b44ccb5bc02d0b805bd979cc) + ## [1.3.0] - 2023-06-16 ### Changed @@ -95,6 +124,8 @@ - Remove unnecessary Optional - Enable ssh_config_file to be `None` +[1.3.1]: https://github.com/AntaresSimulatorTeam/antares-launcher/releases/tag/v1.3.1 + [1.3.0]: https://github.com/AntaresSimulatorTeam/antares-launcher/releases/tag/v1.3.0 [1.2.4]: https://github.com/AntaresSimulatorTeam/antares-launcher/releases/tag/v1.2.4 diff --git a/antareslauncher/__init__.py b/antareslauncher/__init__.py index b58b8ab..227a2db 100644 --- a/antareslauncher/__init__.py +++ b/antareslauncher/__init__.py @@ -9,9 +9,9 @@ # Standard project metadata -__version__ = "1.3.0" +__version__ = "1.3.1" __author__ = "RTE, Antares Web Team" -__date__ = "2023-06-16" +__date__ = "(unreleased)" # noinspection SpellCheckingInspection __credits__ = "(c) Réseau de Transport de l’Électricité (RTE)"