From b3d899652eaf1764dace98af82a58844a009eded Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Mon, 5 Aug 2019 11:02:33 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.3=20=E2=86=92=200.2.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- check_s3_bucket/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 40d9b47..361db15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM python:3.7-alpine3.9 -RUN pip install --progress-bar=off --no-cache-dir check-s3-bucket==0.2.3 +RUN pip install --progress-bar=off --no-cache-dir check-s3-bucket==0.2.4 ENTRYPOINT [ "/usr/local/bin/check_s3_bucket" ] diff --git a/check_s3_bucket/__init__.py b/check_s3_bucket/__init__.py index 751d640..0591dea 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.3" +__version__ = "0.2.4" NOW = datetime.datetime.now(pytz.utc) diff --git a/setup.cfg b/setup.cfg index 58db513..bce62b9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.3 +current_version = 0.2.4 commit = True tag = True diff --git a/setup.py b/setup.py index 731d0a0..7b68b82 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.3", + version="0.2.4", 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