Skip to content

Commit

Permalink
Bumped version to v0.10.13-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Sep 23, 2019
1 parent 784896a commit 375297b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[bumpversion]
current_version = 0.10.12-beta
current_version = 0.10.13-beta
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = gamma
values =
values =
beta
gamma

Expand All @@ -25,14 +25,14 @@ replace = __version__ = "{new_version}"
universal = 1

[flake8]
exclude =
exclude =
.git,
docs,
build,
.eggs,
max-line-length = 88
max-complexity = 12
ignore =
ignore =
C901
E203
E231
Expand All @@ -49,5 +49,6 @@ test = pytest
[tool:pytest]
collect_ignore = ["setup.py"]
addopts = --verbose
filterwarnings =
filterwarnings =
ignore::UserWarning

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
AUTHOR = "Travis Logan"
AUTHOR_EMAIL = "[email protected]"
REQUIRES_PYTHON = ">=3.5.0"
VERSION = "0.10.12-beta"
VERSION = "0.10.13-beta"
LICENSE = "Apache Software License 2.0"

with open("README.rst") as readme_file:
Expand Down
2 changes: 1 addition & 1 deletion xclim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

__author__ = """Travis Logan"""
__email__ = "[email protected]"
__version__ = "0.10.12-beta"
__version__ = "0.10.13-beta"


def build_module(name, objs, doc="", source=None, mode="ignore"):
Expand Down

0 comments on commit 375297b

Please sign in to comment.