From 73b2732883081271b56fcd536ac441a2d2980131 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Mon, 12 Sep 2022 20:48:37 -0600 Subject: [PATCH] Update to v1.7.1 --- ci/recipe/meta.yaml | 2 +- docs/versions.rst | 3 +++ mpas_analysis/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ci/recipe/meta.yaml b/ci/recipe/meta.yaml index c1396472a..1c6dcd7fb 100644 --- a/ci/recipe/meta.yaml +++ b/ci/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "MPAS-Analysis" %} -{% set version = "1.7.0" %} +{% set version = "1.7.1" %} package: name: {{ name|lower }} diff --git a/docs/versions.rst b/docs/versions.rst index f9407897a..2aa20538b 100644 --- a/docs/versions.rst +++ b/docs/versions.rst @@ -16,6 +16,7 @@ Documentation On GitHub `v1.6.0`_ `1.6.0`_ `v1.6.1`_ `1.6.1`_ `v1.7.0`_ `1.7.0`_ +`v1.7.1`_ `1.7.1`_ ================ =============== .. _`stable`: ../stable/index.html @@ -30,6 +31,7 @@ Documentation On GitHub .. _`v1.6.0`: ../1.6.0/index.html .. _`v1.6.1`: ../1.6.1/index.html .. _`v1.7.0`: ../1.7.0/index.html +.. _`v1.7.1`: ../1.7.1/index.html .. _`master`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/master .. _`develop`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/develop .. _`1.2.6`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.2.6 @@ -42,3 +44,4 @@ Documentation On GitHub .. _`1.6.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.6.0 .. _`1.6.1`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.6.1 .. _`1.7.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.7.0 +.. _`1.7.1`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.7.1 diff --git a/mpas_analysis/__init__.py b/mpas_analysis/__init__.py index 2aa385a38..ac634dd0f 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, 7, 0) +__version_info__ = (1, 7, 1) __version__ = '.'.join(str(vi) for vi in __version_info__)