diff --git a/ci/recipe/meta.yaml b/ci/recipe/meta.yaml index d875947eb..ce5acacc6 100644 --- a/ci/recipe/meta.yaml +++ b/ci/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "MPAS-Analysis" %} -{% set version = "1.10.0" %} +{% set version = "1.11.0rc1" %} package: name: {{ name|lower }} diff --git a/docs/versions.rst b/docs/versions.rst index e558822d6..db8c9aec1 100644 --- a/docs/versions.rst +++ b/docs/versions.rst @@ -21,6 +21,7 @@ Documentation On GitHub `v1.8.0`_ `1.8.0`_ `v1.9.0`_ `1.9.0`_ `v1.10.0`_ `1.10.0`_ +`v1.11.0`_ `1.11.0`_ ================ =============== .. _`stable`: ../stable/index.html @@ -40,6 +41,7 @@ Documentation On GitHub .. _`v1.8.0`: ../1.8.0/index.html .. _`v1.9.0`: ../1.9.0/index.html .. _`v1.10.0`: ../1.10.0/index.html +.. _`v1.11.0`: ../1.11.0/index.html .. _`main`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/main .. _`develop`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/develop .. _`1.2.6`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.2.6 @@ -57,3 +59,4 @@ Documentation On GitHub .. _`1.8.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.8.0 .. _`1.9.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.9.0 .. _`1.10.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.10.0 +.. _`1.11.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.11.0 diff --git a/mpas_analysis/__init__.py b/mpas_analysis/__init__.py index 3ed2043e3..672aa1d48 100644 --- a/mpas_analysis/__init__.py +++ b/mpas_analysis/__init__.py @@ -3,5 +3,5 @@ import matplotlib as mpl mpl.use('Agg') -__version_info__ = (1, 10, 0) +__version_info__ = (1, 11, 0) __version__ = '.'.join(str(vi) for vi in __version_info__) diff --git a/setup.py b/setup.py index 2c8f7165a..5b0a84a7a 100755 --- a/setup.py +++ b/setup.py @@ -41,9 +41,8 @@ with open(os.path.join(here, 'mpas_analysis', '__init__.py')) as f: init_file = f.read() -# version = re.search(r'{}\s*=\s*[(]([^)]*)[)]'.format('__version_info__'), -# init_file).group(1).replace(', ', '.') -version = '1.10.0rc2' +version = re.search(r'{}\s*=\s*[(]([^)]*)[)]'.format('__version_info__'), + init_file).group(1).replace(', ', '.') setup(name='mpas_analysis', version=version,