From 1c9b4b2e556b81f1e668ae7aa3aaea8aa91b7983 Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Thu, 31 May 2018 22:45:58 -0700 Subject: [PATCH] Fix versioneer, release v0.10.6 --- doc/whats-new.rst | 17 +---------------- setup.cfg | 2 +- xarray/_version.py | 2 +- 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 730ba20b850..ad88289e43f 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -25,24 +25,9 @@ What's New - `Python 3 Statement `__ - `Tips on porting to Python 3 `__ - .. _whats-new.0.10.6: -v0.10.6 (unreleased) --------------------- - -Documentation -~~~~~~~~~~~~~ - -Enhancements -~~~~~~~~~~~~ - -Bug fixes -~~~~~~~~~ - -.. _whats-new.0.10.5: - -v0.10.5 (31 May 2018) +v0.10.6 (31 May 2018) --------------------- The minor release includes a number of bug-fixes and backwards compatible diff --git a/setup.cfg b/setup.cfg index 4dd1bffe043..17f24b3f1ce 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,7 +22,7 @@ VCS = git style = pep440 versionfile_source = xarray/_version.py versionfile_build = xarray/_version.py -tag_prefix = +tag_prefix = v parentdir_prefix = xarray- [aliases] diff --git a/xarray/_version.py b/xarray/_version.py index 2fa32b69798..df4ee95ade4 100644 --- a/xarray/_version.py +++ b/xarray/_version.py @@ -41,7 +41,7 @@ def get_config(): cfg = VersioneerConfig() cfg.VCS = "git" cfg.style = "pep440" - cfg.tag_prefix = "" + cfg.tag_prefix = "v" cfg.parentdir_prefix = "xarray-" cfg.versionfile_source = "xarray/_version.py" cfg.verbose = False