diff --git a/ci/recipe/meta.yaml b/ci/recipe/meta.yaml index cdd8b15..12577d4 100644 --- a/ci/recipe/meta.yaml +++ b/ci/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyremap" %} -{% set version = "1.2.0" %} +{% set version = "1.3.0" %} package: name: {{ name|lower }} diff --git a/docs/versions.rst b/docs/versions.rst index c6874e4..c5bb8ff 100644 --- a/docs/versions.rst +++ b/docs/versions.rst @@ -20,6 +20,7 @@ Documentation On GitHub `v1.0.1`_ `1.0.1`_ `v1.1.0`_ `1.1.0`_ `v1.2.0`_ `1.2.0`_ +`v1.3.0`_ `1.3.0`_ ================ =============== .. _`stable`: ../stable/index.html @@ -38,6 +39,7 @@ Documentation On GitHub .. _`v1.0.1`: ../1.0.1/index.html .. _`v1.1.0`: ../1.1.0/index.html .. _`v1.2.0`: ../1.2.0/index.html +.. _`v1.3.0`: ../1.3.0/index.html .. _`main`: https://github.com/MPAS-Dev/pyremap/tree/main .. _`0.0.6`: https://github.com/MPAS-Dev/pyremap/tree/0.0.6 .. _`0.0.7`: https://github.com/MPAS-Dev/pyremap/tree/0.0.7 @@ -54,3 +56,4 @@ Documentation On GitHub .. _`1.0.1`: https://github.com/MPAS-Dev/pyremap/tree/1.0.1 .. _`1.1.0`: https://github.com/MPAS-Dev/pyremap/tree/1.1.0 .. _`1.2.0`: https://github.com/MPAS-Dev/pyremap/tree/1.2.0 +.. _`1.3.0`: https://github.com/MPAS-Dev/pyremap/tree/1.3.0 diff --git a/pyremap/__init__.py b/pyremap/__init__.py index a488ca5..81c17be 100644 --- a/pyremap/__init__.py +++ b/pyremap/__init__.py @@ -12,5 +12,5 @@ from pyremap.polar import get_polar_descriptor, get_polar_descriptor_from_file from pyremap.remapper import Remapper -__version_info__ = (1, 2, 0) +__version_info__ = (1, 3, 0) __version__ = '.'.join(str(vi) for vi in __version_info__)