diff --git a/check_s3_bucket/__init__.py b/check_s3_bucket/__init__.py
index 244f2a66d8d9b0b7d66a6d079548994761c72063..93a928eb3912ab993c3443ef5731087f02ca9a27 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.0"
+__version__ = "0.2.1"
 NOW = datetime.datetime.now(pytz.utc)
 
 
diff --git a/setup.cfg b/setup.cfg
index babcfee5e03a2f16a8c6270e46d157a9fa8575af..d72c5c4fe2f1e97f9197f93ce0f138bad818a615 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.2.0
+current_version = 0.2.1
 commit = True
 tag = True
 
diff --git a/setup.py b/setup.py
index 7ca5fbee3514b06693296cc3ae74cbd2042c5a77..70d1dd11c9fc42212978a727149455f7810b3d50 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.0",
+    version="0.2.1",
     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(),