From aa40da632f42c7518343997c3fb09595a584aeb8 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Tue, 4 Aug 2020 17:54:55 +0900 Subject: [PATCH] =?UTF-8?q?#20=20Update=20package=20version=20(0.6.0=20?= =?UTF-8?q?=E2=86=92=200.6.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 2 +- pyproject.toml | 2 +- tests/test_package.py | 2 +- xarray_custom/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 858596d..7f6084e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Akio Taniguchi" # The full version, including alpha/beta/rc tags -release = "0.6.0" +release = "0.6.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2aab230..afe3da2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xarray-custom" -version = "0.6.0" +version = "0.6.1" description = "Data classes for custom xarray creation" authors = ["Akio Taniguchi "] license = "MIT" diff --git a/tests/test_package.py b/tests/test_package.py index 420acc9..989174a 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -4,7 +4,7 @@ # test functions def test_version(): - assert __version__ == "0.6.0" + assert __version__ == "0.6.1" def test_author(): diff --git a/xarray_custom/__init__.py b/xarray_custom/__init__.py index 110c8dd..7545018 100644 --- a/xarray_custom/__init__.py +++ b/xarray_custom/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa -__version__ = "0.6.0" +__version__ = "0.6.1" __author__ = "Akio Taniguchi"