From 37c681828d1943ca4a7a28d9fb14185bdeee6e47 Mon Sep 17 00:00:00 2001 From: Marcos Bento Date: Mon, 22 Jul 2024 11:50:27 +0100 Subject: [PATCH] Prepare ecFlow 5.13.3 release --- CMakeLists.txt | 2 +- docs/conf.py | 2 +- docs/release_notes/version_5.13.rst | 15 +++++++++++++++ libs/pyext/ecflow/__init__.py | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4453ee9fb..879ae1f47 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.2 ) +project( ecflow LANGUAGES CXX VERSION 5.13.3 ) # 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 207b0416f..bd2106f95 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -93,7 +93,7 @@ def get_ecflow_version(): - version = "5.13.2" + version = "5.13.3" 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 916625fca..08e4152c3 100644 --- a/docs/release_notes/version_5.13.rst +++ b/docs/release_notes/version_5.13.rst @@ -6,6 +6,21 @@ Version 5.13 updates .. role:: jiraissue :class: hidden +Version 5.13.3 +============== + +* `Released `__\ on 2024-07-22 + +General +------- + +- **Fix** enable fallback option values for Mirror related variables :jiraissue:`ECFLOW-1966` + +Python +------ + +- **Fix** enable pythonic use of Node.get_generated_variables :jiraissue:`ECFLOW-1968` + Version 5.13.2 ============== diff --git a/libs/pyext/ecflow/__init__.py b/libs/pyext/ecflow/__init__.py index f39c00558..6c8b2d138 100644 --- a/libs/pyext/ecflow/__init__.py +++ b/libs/pyext/ecflow/__init__.py @@ -15,6 +15,6 @@ The ecFlow python module """ -__version__ = '5.13.2' +__version__ = '5.13.3' # http://stackoverflow.com/questions/13040646/how-do-i-create-documentation-with-pydoc