diff --git a/Makefile b/Makefile index 4a4249b..6297461 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ default: @echo "Pick a target (e.g., clean, test)" clean: - find wsgi_intercept -name "*.pyc" |xargs rm || true - find test -name "*.pyc" |xargs rm || true + find wsgi_intercept test -name "*.py[co]" |xargs rm || true + find wsgi_intercept test -type d -name "__pycache__" |xargs rmdir || true rm -r dist || true rm -r build || true rm -r wsgi_intercept.egg-info || true diff --git a/wsgi_intercept/__init__.py b/wsgi_intercept/__init__.py index d5fc50c..1bb6d52 100644 --- a/wsgi_intercept/__init__.py +++ b/wsgi_intercept/__init__.py @@ -120,7 +120,7 @@ Additional documentation is available on `Read The Docs`_. """ from __future__ import print_function -__version__ = '1.1.0' +__version__ = '1.1.1' import sys