From 8f9e966b4f220428a1b220375b6f6cc89880fdcd Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Thu, 20 Jun 2019 00:05:14 +0300 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 --- check_s3_bucket/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/check_s3_bucket/__init__.py b/check_s3_bucket/__init__.py index 5bd9b37..ed5ee66 100755 --- a/check_s3_bucket/__init__.py +++ b/check_s3_bucket/__init__.py @@ -22,7 +22,7 @@ except ImportError: print("Failed to import pytz.") exit(3) -__version__ = "0.1.1" +__version__ = "0.2.0" NOW = datetime.datetime.now(pytz.utc) diff --git a/setup.cfg b/setup.cfg index 151d908..babcfee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 commit = True tag = True diff --git a/setup.py b/setup.py index c9254a3..7ca5fbe 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name="check_s3_bucket", - version="0.1.1", + version="0.2.0", description="""Check that a file was added to an S3 bucket in the given time window and is of a reasonable size.""", long_description=open("README.rst", "r").read(), -- GitLab