! $Id: ropp_utils_version.f90 6490 2020-09-10 17:36:27Z idculv $ FUNCTION ropp_utils_version() RESULT (version) !****f* Common/ropp_utils_version * ! ! NAME ! ropp_utils_version ! ! SYNOPSIS ! Return ROPP_UTILS version ID string ! ! USE ropp_utils ! version = ropp_utils_version() ! ! DESCRIPTION ! This function returns the (common) version string for the ROPP_UTILS ! module. By default, this function should be called by all ROPP_UTILS ! tools to display a version ID when the '-v' command-line switch is ! used. ! ! AUTHOR ! Met Office, Exeter, UK. ! Any comments on this software should be given via the ROM SAF ! Helpdesk at http://www.romsaf.org ! ! COPYRIGHT ! (c) EUMETSAT. All rights reserved. ! For further details please refer to the file COPYRIGHT ! which you should have received as part of this distribution. ! !**** CHARACTER (LEN=40) :: version ! Edit this string when ROPP_UTILS module version is updated version = "v10.0 30-Sep-2020" END FUNCTION ropp_utils_version