Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.4.3 #80

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions antareslauncher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down