From 939f98b4dc77c664c4611cf569b66d2a5180e058 Mon Sep 17 00:00:00 2001 From: jvfe Date: Tue, 27 Oct 2020 10:30:40 -0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.4=20=E2=86=92=200.1.5?= 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 0d0483d..883eb71 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.4" +__version__ = "0.1.5" from reconciler.reconcile import reconcile diff --git a/setup.cfg b/setup.cfg index 8ae2a66..77aafc0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.4 +current_version = 0.1.5 commit = True tag = True diff --git a/setup.py b/setup.py index 2cfd2ed..51386a9 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.4", + version="0.1.5", zip_safe=False, )