Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
  • Loading branch information
mathomp4 committed Jul 10, 2023
2 parents 6c43d57 + ea04e37 commit 1f483b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Deprecate the use of FLAP for command line parsing in favor of fArgParse. FLAP support will be removed in MAPL 3

## [2.39.5] - 2023-07-10

### Fixed

- Fixed logic in generating the names of the split fields. If the alias field in the History.rc has separators (;), each substring is used to name the resulting fields. If there are no separators, this will be the exact name of the first split field

## [2.39.4] - 2023-06-23

### 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.39.4
VERSION 2.39.5
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

# Set the possible values of build type for cmake-gui
Expand Down
1 change: 0 additions & 1 deletion base/Base/Base_Base_implementation.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3908,7 +3908,6 @@ subroutine genAlias(name, n, splitNameArray, aliasName, rc)
deallocate(tmp)
! if the user did no supply enough separated alias field names,
! append 00i to the original field name
if (n==1) nn=0
do i=nn+1,n
write(splitNameArray(i),'(A,I3.3)') trim(name), i
end do
Expand Down

0 comments on commit 1f483b9

Please sign in to comment.