diff --git a/check_s3_bucket/__init__.py b/check_s3_bucket/__init__.py index 5bd9b37dac17e55ac5aab10ba7dee3bf471a31cc..ed5ee66491604f6b5e9f5a82b78b49372593e4b5 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 151d908382207bc5121be80cec529cdaab8a13c5..babcfee5e03a2f16a8c6270e46d157a9fa8575af 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 c9254a30dfcb9281037914d0ef9c6935e194ee7b..7ca5fbee3514b06693296cc3ae74cbd2042c5a77 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(),