From 60223a6f617276178fe659f61ef8c125ee1f863a Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Sat, 16 Sep 2023 22:21:07 +0200 Subject: [PATCH] Update to v1.1.0 --- 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 334ba3e..7ead132 100644 --- a/ci/recipe/meta.yaml +++ b/ci/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyremap" %} -{% set version = "1.0.1" %} +{% set version = "1.1.0" %} package: name: {{ name|lower }} diff --git a/docs/versions.rst b/docs/versions.rst index fb84800..9103ac1 100644 --- a/docs/versions.rst +++ b/docs/versions.rst @@ -18,6 +18,7 @@ Documentation On GitHub `v0.0.16`_ `0.0.16`_ `v1.0.0`_ `1.0.0`_ `v1.0.1`_ `1.0.1`_ +`v1.1.0`_ `1.1.0`_ ================ =============== .. _`stable`: ../stable/index.html @@ -34,6 +35,7 @@ Documentation On GitHub .. _`v0.0.16`: ../0.0.16/index.html .. _`v1.0.0`: ../1.0.0/index.html .. _`v1.0.1`: ../1.0.1/index.html +.. _`v1.1.0`: ../1.1.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 @@ -48,3 +50,4 @@ Documentation On GitHub .. _`0.0.16`: https://github.com/MPAS-Dev/pyremap/tree/0.0.16 .. _`1.0.0`: https://github.com/MPAS-Dev/pyremap/tree/1.0.0 .. _`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 diff --git a/pyremap/__init__.py b/pyremap/__init__.py index e63bdd0..b7331e0 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, 0, 1) +__version_info__ = (1, 1, 0) __version__ = '.'.join(str(vi) for vi in __version_info__)