MAPL 2.7.0
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.