diff --git a/Dockerfile b/Dockerfile
index 361db156030f8419b67960f922cd941f1e8038e6..bd9275b1911ab41a62e8e5aed5e5e04955220d2f 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.4
+RUN pip install --progress-bar=off --no-cache-dir check-s3-bucket==0.2.5
 ENTRYPOINT [ "/usr/local/bin/check_s3_bucket" ]
diff --git a/check_s3_bucket/__init__.py b/check_s3_bucket/__init__.py
index 0b3396444d5c50a8e0f37c0cd55075c04811f15e..c46b0bdee157797d434e684902569a7534374db8 100755
--- a/check_s3_bucket/__init__.py
+++ b/check_s3_bucket/__init__.py
@@ -23,7 +23,7 @@ except ImportError:
     print("Failed to import pytz.")
     sys.exit(3)
 
-__version__ = "0.2.4"
+__version__ = "0.2.5"
 NOW = datetime.datetime.now(pytz.utc)
 
 
diff --git a/setup.cfg b/setup.cfg
index bce62b9f45ad3c63326bb55bec15ed9501c9f723..040a71193415df1ab4885bdc959f129edbe03389 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.2.4
+current_version = 0.2.5
 commit = True
 tag = True
 
diff --git a/setup.py b/setup.py
index 6fb836c89496e7106b3b8aef235a79c27cfdeb75..68992ab2b317a4327bb48edb69468f35ba17e5f9 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.4",
+    version="0.2.5",
     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(),