From ddeec529ada86aa3f27bb640e01b5868121f4c0b Mon Sep 17 00:00:00 2001 From: Laurent LAPORTE Date: Thu, 11 Apr 2024 19:33:36 +0200 Subject: [PATCH] build: new minor release v1.4.1 (2024-04-11) --- CHANGES.md | 7 +++++++ antareslauncher/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 9ec337e..406b09e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,13 @@ npx auto-changelog -l false --hide-empty-releases -v v1.3.1 -o CHANGES.out.md ``` --> +## [1.4.1] - 2024-04-11 + +### Fixes + +- fix(retriever): avoid infinite loop if sbatch command fails [`#69`](https://github.com/AntaresSimulatorTeam/antares-launcher/pull/69) + + ## [1.4.0] - 2023-12-19 ### Changed diff --git a/antareslauncher/__init__.py b/antareslauncher/__init__.py index 9bcab34..4929992 100644 --- a/antareslauncher/__init__.py +++ b/antareslauncher/__init__.py @@ -9,9 +9,9 @@ # Standard project metadata -__version__ = "1.4.0" +__version__ = "1.4.1" __author__ = "RTE, Antares Web Team" -__date__ = "2023-12-19" +__date__ = "2024-04-11" # noinspection SpellCheckingInspection __credits__ = "(c) Réseau de Transport de l’Électricité (RTE)" diff --git a/setup.py b/setup.py index 01df375..24591eb 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ setup( name=__project_name__, - version="1.4.0", + version="1.4.1", 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",