diff --git a/check_s3_bucket/__init__.py b/check_s3_bucket/__init__.py index fbaeaf54c271befe8ab49076e5c23576c376af8e..49214618fed5ace7894228862c21eecbde5c764f 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 f4c48f7487d465691c259a691ca5246909998197..51b843ff2af53ceda6d4274c9c895cb637439328 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 2859b5d2dae04c0bcb4655ae4f6927803aff9ef3..731d0a01f752df022fee46583f100901cd690419 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(),