Skip to content

Commit

Permalink
Merge hotfix changes 'release/5.11.4' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Nov 17, 2023
2 parents baf5ad4 + 41f0467 commit 319b34f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ endif()
find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild ) # Before project()

# this will generate variables, see ACore/ecflow_version.h.in
project( ecflow LANGUAGES CXX VERSION 5.11.3 )
project( ecflow LANGUAGES CXX VERSION 5.11.4 )

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)

Expand Down
2 changes: 1 addition & 1 deletion Pyext/ecflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
The ecFlow python module
"""

__version__ = '5.11.3'
__version__ = '5.11.4'

# http://stackoverflow.com/questions/13040646/how-do-i-create-documentation-with-pydoc
1 change: 1 addition & 0 deletions docs/release_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 1

version_5.11.4
version_5.11.3
version_5.11.2
version_5.11.1
Expand Down
16 changes: 16 additions & 0 deletions docs/release_notes/version_5.11.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.. _version_5.11.4:

Version 5.11.4 updates
//////////////////////


Version 5.11.4
==============

* `Released <https://confluence.ecmwf.int/display/ECFLOW/Releases>`__\ on 2023-10-10


General
-------

- **Fix**: Correct the finding of the logserver script
8 changes: 4 additions & 4 deletions tools/ecflow_logserver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ prognum=$((base+username))
#prognum=35502

PROG=$(which $0)
#PROG_PATH=$(readlink -f $PROG)
PROG_PATH=$(readlink $PROG)
#PATH_NAME=$ecflow_DIR/bin
PATH_NAME=./
PROG_PATH=$(readlink -f $PROG)
PATH_NAME=$ecflow_DIR/bin
#PROG_PATH=$(readlink $PROG)
#PATH_NAME=./

export LOGPORT=$prognum
LOGDIR=$(dirname $LOGFILE)
Expand Down

0 comments on commit 319b34f

Please sign in to comment.