Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <taniguchi@a.phys.nagoya-u.ac.jp>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# test functions
def test_version():
assert __version__ == "0.6.0"
assert __version__ == "0.6.1"


def test_author():
Expand Down
2 changes: 1 addition & 1 deletion xarray_custom/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flake8: noqa
__version__ = "0.6.0"
__version__ = "0.6.1"
__author__ = "Akio Taniguchi"


Expand Down