From bd49bc37caef2ce75aaa249ff490fca44d3b7c7b Mon Sep 17 00:00:00 2001 From: jvfe Date: Wed, 14 Oct 2020 11:45:06 -0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.3=20=E2=86=92=200.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- reconciler/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/reconciler/__init__.py b/reconciler/__init__.py index 37a1796..0d0483d 100644 --- a/reconciler/__init__.py +++ b/reconciler/__init__.py @@ -3,6 +3,6 @@ name = "reconciler" __author__ = """João Vitor F. Cavalcante""" __email__ = "jvfe@ufrn.edu.br" -__version__ = "0.1.3" +__version__ = "0.1.4" from reconciler.reconcile import reconcile diff --git a/setup.cfg b/setup.cfg index bdacf58..8ae2a66 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 commit = True tag = True diff --git a/setup.py b/setup.py index 3004e87..2cfd2ed 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/jvfe/reconciler", - version="0.1.3", + version="0.1.4", zip_safe=False, )