From 462bf87f9965dccbacd0c24d48997b409fe830bf Mon Sep 17 00:00:00 2001 From: Andrew Beveridge Date: Thu, 31 Jan 2019 01:48:51 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pysonofflan/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pysonofflan/__init__.py b/pysonofflan/__init__.py index f4f5503..11f32e3 100644 --- a/pysonofflan/__init__.py +++ b/pysonofflan/__init__.py @@ -50,7 +50,7 @@ async def state_callback(device): __author__ = """Andrew Beveridge""" __email__ = 'andrew@beveridge.uk' -__version__ = '0.1.0' +__version__ = '0.1.1' __url__ = 'https://github.com/beveradb/pysonofflan' # flake8: noqa diff --git a/setup.cfg b/setup.cfg index a80b419..2a45fc5 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 @@ -18,5 +18,4 @@ universal = 1 exclude = docs [aliases] -# Define setup.py command aliases here diff --git a/setup.py b/setup.py index b3b408c..36176d8 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/beveradb/pysonofflan', - version='0.1.0', + version='0.1.1', zip_safe=False, )