From 573cfab861ed07839d5c7d21b2c1da86686c7628 Mon Sep 17 00:00:00 2001 From: Jeremy McGibbon Date: Tue, 26 Jan 2021 12:59:46 -0800 Subject: [PATCH] Release/0.6.0 (#47) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version to 0.6.0 in preparation for GMD submission. * update history for 0.6.0 * Bump version: 0.5.1 → 0.6.0 --- HISTORY.md | 2 +- fv3gfs/util/__init__.py | 2 +- setup.cfg | 3 ++- setup.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index d421194..5005c27 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,7 +1,7 @@ History ======= -latest +v0.6.0 ------ Major changes: diff --git a/fv3gfs/util/__init__.py b/fv3gfs/util/__init__.py index 5d6ad4c..5271c32 100644 --- a/fv3gfs/util/__init__.py +++ b/fv3gfs/util/__init__.py @@ -54,5 +54,5 @@ from .buffer import array_buffer, send_buffer, recv_buffer from ._corners import fill_scalar_corners -__version__ = "0.5.1" +__version__ = "0.6.0" __all__ = list(key for key in locals().keys() if not key.startswith("_")) diff --git a/setup.cfg b/setup.cfg index b37452c..2bfa787 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.6.0 commit = True [bdist_wheel] @@ -19,3 +19,4 @@ replace = __version__ = "{new_version}" [bumpversion:file:setup.py] search = version="{current_version}" replace = version="{new_version}" + diff --git a/setup.py b/setup.py index af088ab..5c8747d 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,6 @@ packages=find_namespace_packages(include=["fv3gfs.*"]), include_package_data=True, url="https://github.com/VulcanClimateModeling/fv3gfs-wrapper", - version="0.5.1", + version="0.6.0", zip_safe=False, )