Skip to content

Commit 56731b4

Browse files
committed
Release 5.13.2
2 parents cd9a1c3 + f566378 commit 56731b4

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ endif()
2424

2525
find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild /workspace/ecbuild) # Before project()
2626

27-
project( ecflow LANGUAGES CXX VERSION 5.13.1 )
27+
project( ecflow LANGUAGES CXX VERSION 5.13.2 )
2828

2929
# Important: the project version is used, as generated CMake variables, to filter .../ecflow/core/ecflow_version.h.in
3030

Viewer/ecflowUI/src/TreeNodeModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ QVariant TreeNodeModel::attributesData(const QModelIndex& index, int role, VTree
348348
return QColor(119, 153, 170);
349349
}
350350
else {
351-
return QColorConstants::Black;
351+
return static_cast<QColor>(Qt::black);
352352
}
353353
}
354354

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393

9494

9595
def get_ecflow_version():
96-
version = "5.13.1"
96+
version = "5.13.2"
9797
ecflow_version = version.split(".")
9898
print("Extracted ecflow version '" + str(ecflow_version))
9999
return ecflow_version

docs/release_notes/version_5.13.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ Version 5.13 updates
66
.. role:: jiraissue
77
:class: hidden
88

9+
Version 5.13.2
10+
==============
11+
12+
* `Released <https://confluence.ecmwf.int/display/ECFLOW/Releases>`__\ on 2024-07-01
13+
14+
General
15+
-------
16+
17+
- **Fix** correct compilation issue when using Qt5 :jiraissue:`ECFLOW-1964`
18+
919
Version 5.13.1
1020
==============
1121

libs/pyext/ecflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
The ecFlow python module
1616
"""
1717

18-
__version__ = '5.13.1'
18+
__version__ = '5.13.2'
1919

2020
# http://stackoverflow.com/questions/13040646/how-do-i-create-documentation-with-pydoc

0 commit comments

Comments
 (0)