From 7b91341d6f58b564415e687cb849c94cd25c22b5 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 8 Nov 2018 17:00:24 +0000 Subject: [PATCH] Version 0.8.2 --- docs/release-notes.md | 6 ++++++ scripts/publish | 1 + starlette/__init__.py | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index cbedd51a..3848517a 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,9 @@ +## 0.8.2 + +## StaticFiles + +* StaticFiles no longer reads the file for responses to `HEAD` requests. + ## 0.8.1 ## Templating diff --git a/scripts/publish b/scripts/publish index ced33562..eb9235e0 100755 --- a/scripts/publish +++ b/scripts/publish @@ -17,6 +17,7 @@ find starlette -type d -name __pycache__ -delete ${PREFIX}python setup.py sdist ${PREFIX}twine upload dist/* +${PREFIX}mkdocs gh-deploy echo "You probably want to also tag the version now:" echo "git tag -a ${VERSION} -m 'version ${VERSION}'" diff --git a/starlette/__init__.py b/starlette/__init__.py index 8088f751..deded324 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.8.1" +__version__ = "0.8.2"