Skip to content

Commit e57f81c

Browse files
authored
Merge pull request #1001 from xylar/update-to-1.11.0
Update to v1.11.0
2 parents 3ff2e5c + b884dc7 commit e57f81c

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

ci/recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "MPAS-Analysis" %}
2-
{% set version = "1.10.0" %}
2+
{% set version = "1.11.0rc1" %}
33

44
package:
55
name: {{ name|lower }}

docs/versions.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Documentation On GitHub
2121
`v1.8.0`_ `1.8.0`_
2222
`v1.9.0`_ `1.9.0`_
2323
`v1.10.0`_ `1.10.0`_
24+
`v1.11.0`_ `1.11.0`_
2425
================ ===============
2526

2627
.. _`stable`: ../stable/index.html
@@ -40,6 +41,7 @@ Documentation On GitHub
4041
.. _`v1.8.0`: ../1.8.0/index.html
4142
.. _`v1.9.0`: ../1.9.0/index.html
4243
.. _`v1.10.0`: ../1.10.0/index.html
44+
.. _`v1.11.0`: ../1.11.0/index.html
4345
.. _`main`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/main
4446
.. _`develop`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/develop
4547
.. _`1.2.6`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.2.6
@@ -57,3 +59,4 @@ Documentation On GitHub
5759
.. _`1.8.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.8.0
5860
.. _`1.9.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.9.0
5961
.. _`1.10.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.10.0
62+
.. _`1.11.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.11.0

mpas_analysis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
import matplotlib as mpl
44
mpl.use('Agg')
55

6-
__version_info__ = (1, 10, 0)
6+
__version_info__ = (1, 11, 0)
77
__version__ = '.'.join(str(vi) for vi in __version_info__)

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@
4141
with open(os.path.join(here, 'mpas_analysis', '__init__.py')) as f:
4242
init_file = f.read()
4343

44-
# version = re.search(r'{}\s*=\s*[(]([^)]*)[)]'.format('__version_info__'),
45-
# init_file).group(1).replace(', ', '.')
46-
version = '1.10.0rc2'
44+
version = re.search(r'{}\s*=\s*[(]([^)]*)[)]'.format('__version_info__'),
45+
init_file).group(1).replace(', ', '.')
4746

4847
setup(name='mpas_analysis',
4948
version=version,

0 commit comments

Comments
 (0)