From b1bcfc85fcda96da272fb84b912ab3e78d429d2f Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Tue, 11 Apr 2023 14:43:20 +0200 Subject: [PATCH] Update to v0.0.16 --- ci/recipe/meta.yaml | 2 +- docs/versions.rst | 3 +++ pyremap/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ci/recipe/meta.yaml b/ci/recipe/meta.yaml index 622f71d..df1caa3 100644 --- a/ci/recipe/meta.yaml +++ b/ci/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyremap" %} -{% set version = "0.0.15" %} +{% set version = "0.0.16" %} package: name: {{ name|lower }} diff --git a/docs/versions.rst b/docs/versions.rst index 54a4da6..385960b 100644 --- a/docs/versions.rst +++ b/docs/versions.rst @@ -15,6 +15,7 @@ Documentation On GitHub `v0.0.13`_ `0.0.13`_ `v0.0.14`_ `0.0.14`_ `v0.0.15`_ `0.0.15`_ +`v0.0.16`_ `0.0.16`_ ================ =============== .. _`stable`: ../stable/index.html @@ -28,6 +29,7 @@ Documentation On GitHub .. _`v0.0.13`: ../0.0.13/index.html .. _`v0.0.14`: ../0.0.14/index.html .. _`v0.0.15`: ../0.0.15/index.html +.. _`v0.0.16`: ../0.0.16/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 @@ -39,3 +41,4 @@ Documentation On GitHub .. _`0.0.13`: https://github.com/MPAS-Dev/pyremap/tree/0.0.13 .. _`0.0.14`: https://github.com/MPAS-Dev/pyremap/tree/0.0.14 .. _`0.0.15`: https://github.com/MPAS-Dev/pyremap/tree/0.0.15 +.. _`0.0.16`: https://github.com/MPAS-Dev/pyremap/tree/0.0.16 diff --git a/pyremap/__init__.py b/pyremap/__init__.py index 7031327..019f3c6 100644 --- a/pyremap/__init__.py +++ b/pyremap/__init__.py @@ -10,5 +10,5 @@ from pyremap.polar import get_polar_descriptor, get_polar_descriptor_from_file from pyremap.remapper import Remapper -__version_info__ = (0, 0, 15) +__version_info__ = (0, 0, 16) __version__ = '.'.join(str(vi) for vi in __version_info__)