From b79fec7b3428e3355cf96b63e99892fea249fea4 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 8 Jun 2020 00:31:50 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- imagecast/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b8d054d..0c5d183 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 files = setup.py imagecast/__init__.py commit = True tag = True diff --git a/imagecast/__init__.py b/imagecast/__init__.py index 21f27d4..a59c5c4 100644 --- a/imagecast/__init__.py +++ b/imagecast/__init__.py @@ -1,3 +1,3 @@ """Imagecast is like ImageMagick but for Pythonistas. Optionally provides its features via HTTP API.""" __appname__ = 'imagecast' -__version__ = '0.1.1' +__version__ = '0.2.0' diff --git a/setup.py b/setup.py index 63fae6b..01dd181 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ README = open(os.path.join(here, "README.rst")).read() setup(name="imagecast", - version="0.1.1", + version="0.2.0", description="Imagecast is like ImageMagick but for Pythonistas. Optionally provides its features via HTTP API.", long_description=README, license="AGPL 3, EUPL 1.2",