From a3c110f1fbf7b0ab608af2ede1be6034c4ad6e71 Mon Sep 17 00:00:00 2001 From: Marcos Bento Date: Fri, 29 Nov 2024 14:26:33 +0000 Subject: [PATCH] Prepare ecFlow 5.13.6 release --- CMakeLists.txt | 2 +- docs/conf.py | 2 +- docs/release_notes/version_5.13.rst | 19 +++++++++++++++++++ libs/pyext/ecflow/__init__.py | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 53e8b98a4..08433f691 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ endif() find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild /workspace/ecbuild) # Before project() -project( ecflow LANGUAGES CXX VERSION 5.13.5 ) +project( ecflow LANGUAGES CXX VERSION 5.13.6 ) # Important: the project version is used, as generated CMake variables, to filter .../ecflow/core/ecflow_version.h.in diff --git a/docs/conf.py b/docs/conf.py index 9f1dc5d68..71d3c1683 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -93,7 +93,7 @@ def get_ecflow_version(): - version = "5.13.5" + version = "5.13.6" ecflow_version = version.split(".") print("Extracted ecflow version '" + str(ecflow_version)) return ecflow_version diff --git a/docs/release_notes/version_5.13.rst b/docs/release_notes/version_5.13.rst index ee6ba59ca..ab89490bd 100644 --- a/docs/release_notes/version_5.13.rst +++ b/docs/release_notes/version_5.13.rst @@ -6,6 +6,25 @@ Version 5.13 updates .. role:: jiraissue :class: hidden +Version 5.13.6 +============== + +* `Released `__\ on 2024-11-29 + +General +------- + +- **Improvement** enable explicit 'reload' of Mirror attribute configuration :jiraissue:`ECFLOW-1986` +- **Improvement** enable automatic builds of rpm/deb packages :jiraissue:`ECFLOW-1967` +- **Fix** correct replacement of nodes with Repeat DateTime attributes :jiraissue:`ECFLOW-1992` +- **Fix** correct handling of :code:`ecflow_client` option :code:`--host` when searching for SSL certificate file :jiraissue:`ECFLOW-1985` +- **Fix** correct build setup used on conda-forge with Python 3.13 :jiraissue:`ECFLOW-1987` + +ecFlow UI +--------- + +- **Improvement** enable Repeat DateTime attribute editor :jiraissue:`ECFLOW-1988` + Version 5.13.5 ============== diff --git a/libs/pyext/ecflow/__init__.py b/libs/pyext/ecflow/__init__.py index 48334cbdf..3e8d0b632 100644 --- a/libs/pyext/ecflow/__init__.py +++ b/libs/pyext/ecflow/__init__.py @@ -15,6 +15,6 @@ The ecFlow python module """ -__version__ = '5.13.5' +__version__ = '5.13.6' # http://stackoverflow.com/questions/13040646/how-do-i-create-documentation-with-pydoc