Skip to content

Commit

Permalink
Merge pull request #3132 from GEOS-ESM/hotfix/bmauer/fixes-#3131
Browse files Browse the repository at this point in the history
fixes #3131
  • Loading branch information
tclune authored Oct 29, 2024
2 parents 3baff6e + 958144c commit 306ca39
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [2.50.2] - 2024-10-30

### Fixed

- Fixed bug with cycle placement in coupler loop in History

## [2.50.1] - 2024-10-18

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ endif ()

project (
MAPL
VERSION 2.50.1
VERSION 2.50.2
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

# Set the possible values of build type for cmake-gui
Expand Down
2 changes: 1 addition & 1 deletion gridcomps/History/MAPL_HistoryGridComp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3394,9 +3394,9 @@ subroutine Run ( gc, import, export, clock, rc )
!-------------------------------

do n = 1, nlist
if(Ignore(n)) cycle
call MAPL_TimerOn(GENSTATE,trim(list(n)%collection))
call MAPL_TimerOn(GENSTATE,"Couplers")
if(Ignore(n)) cycle
if (.not.list(n)%disabled .and. IntState%average(n)) then
! R8 to R4 copy (if needed!)
do m=1,list(n)%field_set%nfields
Expand Down

0 comments on commit 306ca39

Please sign in to comment.