Skip to content

MAPL 2.7.0

Compare
Choose a tag to compare
@mathomp4 mathomp4 released this 25 May 14:03
· 4131 commits to main since this release
ef9b35e

DOI

This is a zero-diff update to MAPL but has a minor release bump due to a change in how the interface to Options are handled. This update means code that before did:

type (MAPL_Cap) :: cap
type (MAPL_FlapCapOptions) :: cap_options
cap_options = MAPL_FlapCapOptions(description = 'GEOS AGCM', &
                                  authors     = 'GMAO')

now must do:

type (MAPL_FlapCLI) :: cli
type (MAPL_CapOptions) :: cap_options
cli = MAPL_FlapCLI(description = 'GEOS AGCM', & 
                   authors     = 'GMAO')
cap_options = MAPL_CapOptions(cli)

This was changed to facilitate working with UFS.


From CHANGELOG.md

Removed

  • Remove file MAPL_FlapCapOptions.F90

Added

  • Added a file MAPL_FlapCLI.F90

Changed

  • Added a MAPL_CapOptions constructor
  • Change FlapCapOptions to FlapCLI which is not a sub class of
    MAPL_CapOptions any more.