From 408a5f24e907d4b0086c3c1a365ec9c02f7e88b8 Mon Sep 17 00:00:00 2001 From: belthlemar Date: Thu, 10 Oct 2024 11:28:52 +0200 Subject: [PATCH] v1.4.3 --- CHANGES.md | 11 +++++++++++ antareslauncher/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index df773db..031cfb8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,17 @@ npx auto-changelog -l false --hide-empty-releases -v v1.3.1 -o CHANGES.out.md ``` --> +## [1.4.3] - 2024-10-10 + +### Changed + +- build(binaries): build binaries on release [`#78`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/78) + +### Breaking change + +- feat(version): use `antares-study-version` package to handle versions [`#79`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/79) + :warning: the sbatch command is now "8.8" instead of "880" when giving the study version. So you'll have to change your .sh file. + ## [1.4.2] - 2024-09-17 ### Changed diff --git a/antareslauncher/__init__.py b/antareslauncher/__init__.py index ea96279..529e93e 100644 --- a/antareslauncher/__init__.py +++ b/antareslauncher/__init__.py @@ -9,9 +9,9 @@ # Standard project metadata -__version__ = "1.4.2" +__version__ = "1.4.3" __author__ = "RTE, Antares Web Team" -__date__ = "2024-09-17" +__date__ = "2024-10-10" # noinspection SpellCheckingInspection __credits__ = "(c) Réseau de Transport de l’Électricité (RTE)" diff --git a/setup.py b/setup.py index b7f8e23..ddfc9aa 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ setup( name=__project_name__, - version="1.4.2", + version="1.4.3", description="Antares_Launcher to run Antares on a remote linux machine", long_description=pathlib.Path("README.md").read_text(encoding="utf-8"), long_description_content_type="text/markdown",