From 492f0d7358febc7e05fca13975ed01bad025f2e2 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Thu, 27 Jun 2019 16:43:52 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.2=20=E2=86=92=200.2.3?= 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 fbaeaf5..4921461 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.2.2" +__version__ = "0.2.3" NOW = datetime.datetime.now(pytz.utc) diff --git a/setup.cfg b/setup.cfg index f4c48f7..51b843f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2 +current_version = 0.2.3 commit = True tag = True diff --git a/setup.py b/setup.py index 2859b5d..731d0a0 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name="check_s3_bucket", - version="0.2.2", + version="0.2.3", 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