From 6c44d4019b9308757e631f52adecf1aab59ec1b4 Mon Sep 17 00:00:00 2001 From: JannisHoch Date: Thu, 17 Jun 2021 11:02:51 +0200 Subject: [PATCH] version 0.1.1, now REALLY with pip and github actions --- copro/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/copro/__init__.py b/copro/__init__.py index 9947e22..6e49331 100644 --- a/copro/__init__.py +++ b/copro/__init__.py @@ -13,4 +13,4 @@ __author__ = """Jannis M. Hoch, Sophie de Bruin, Niko Wanders""" __email__ = 'j.m.hoch@uu.nl' -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/setup.cfg b/setup.cfg index 0eec112..db83382 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True diff --git a/setup.py b/setup.py index 7e50850..ac5eb9e 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,6 @@ test_suite='tests', tests_require=test_requirements, url='https://copro.readthedocs.io/', - version='0.1.0', + version='0.1.1', zip_safe=False, )