From 83d135e50ef0a6145b8c49ef56fa4947ca9e3ab1 Mon Sep 17 00:00:00 2001 From: travis Date: Thu, 17 Oct 2019 14:30:35 -0400 Subject: [PATCH] bumpversion minor --- setup.cfg | 13 ++++++------- setup.py | 2 +- xclim/__init__.py | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/setup.cfg b/setup.cfg index ba3127953..2e2cac08c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,15 +1,15 @@ [bumpversion] -current_version = 0.10.13-beta +current_version = 0.11.0-beta commit = False tag = False parse = (?P\d+)\.(?P\d+).(?P\d+)(\-(?P[a-z]+))? -serialize = +serialize = {major}.{minor}.{patch}-{release} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = gamma -values = +values = beta gamma @@ -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 @@ -49,6 +49,5 @@ test = pytest [tool:pytest] collect_ignore = ["setup.py"] addopts = --verbose -filterwarnings = +filterwarnings = ignore::UserWarning - diff --git a/setup.py b/setup.py index fb73b37c0..e554c55dd 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ AUTHOR = "Travis Logan" AUTHOR_EMAIL = "logan.travis@ouranos.ca" REQUIRES_PYTHON = ">=3.5.0" -VERSION = "0.10.13-beta" +VERSION = "0.11.0-beta" LICENSE = "Apache Software License 2.0" with open("README.rst") as readme_file: diff --git a/xclim/__init__.py b/xclim/__init__.py index 31ec1c167..22d2429d7 100644 --- a/xclim/__init__.py +++ b/xclim/__init__.py @@ -9,7 +9,7 @@ __author__ = """Travis Logan""" __email__ = "logan.travis@ouranos.ca" -__version__ = "0.10.13-beta" +__version__ = "0.11.0-beta" def build_module(name, objs, doc="", source=None, mode="ignore"):