diff --git a/MRS/version.py b/MRS/version.py index 9360893..95c5c92 100644 --- a/MRS/version.py +++ b/MRS/version.py @@ -1,11 +1,11 @@ -"""Osmosis version/release information""" +"""MRS version/release information""" # Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z" _version_major = 0 _version_minor = 1 _version_micro = '' # use '' for first of series, number for 1 and above -_version_extra = 'rc11' -#_version_extra = '' # Uncomment this for full releases +#_version_extra = 'dev' +_version_extra = '' # Uncomment this for full releases # Construct full version string from these. _ver = [_version_major, _version_minor]