Skip to content

Commit 1c9b4b2

Browse files
committed
Fix versioneer, release v0.10.6
1 parent a3cf251 commit 1c9b4b2

File tree

3 files changed

+3
-18
lines changed

3 files changed

+3
-18
lines changed

doc/whats-new.rst

+1-16
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,9 @@ What's New
2525
- `Python 3 Statement <http://www.python3statement.org/>`__
2626
- `Tips on porting to Python 3 <https://docs.python.org/3/howto/pyporting.html>`__
2727

28-
2928
.. _whats-new.0.10.6:
3029

31-
v0.10.6 (unreleased)
32-
--------------------
33-
34-
Documentation
35-
~~~~~~~~~~~~~
36-
37-
Enhancements
38-
~~~~~~~~~~~~
39-
40-
Bug fixes
41-
~~~~~~~~~
42-
43-
.. _whats-new.0.10.5:
44-
45-
v0.10.5 (31 May 2018)
30+
v0.10.6 (31 May 2018)
4631
---------------------
4732

4833
The minor release includes a number of bug-fixes and backwards compatible

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ VCS = git
2222
style = pep440
2323
versionfile_source = xarray/_version.py
2424
versionfile_build = xarray/_version.py
25-
tag_prefix =
25+
tag_prefix = v
2626
parentdir_prefix = xarray-
2727

2828
[aliases]

xarray/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_config():
4141
cfg = VersioneerConfig()
4242
cfg.VCS = "git"
4343
cfg.style = "pep440"
44-
cfg.tag_prefix = ""
44+
cfg.tag_prefix = "v"
4545
cfg.parentdir_prefix = "xarray-"
4646
cfg.versionfile_source = "xarray/_version.py"
4747
cfg.verbose = False

0 commit comments

Comments
 (0)