From c0d2713da38d003018998da2845e061d91b526ce Mon Sep 17 00:00:00 2001 From: Mark Bakhit Date: Wed, 2 Oct 2024 16:35:58 -0700 Subject: [PATCH] 2.1.0 (#52) --- CHANGELOG.md | 10 +++++++++- src/servestatic/__init__.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87c9b329..94411473 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,16 @@ Using the following categories, list your changes in this order: ## [Unreleased] +- Nothing (yet) + +## [2.1.0] - 2024-10-02 + ### Added - Support Python 3.13. + +### Changed + - Query strings are now preserved during HTTP redirection. ## [2.0.1] - 2024-09-13 @@ -67,7 +74,8 @@ Using the following categories, list your changes in this order: - Forked from [`whitenoise`](https://github.com/evansd/whitenoise) to add ASGI support. -[Unreleased]: https://github.com/Archmonger/ServeStatic/compare/2.0.1...HEAD +[Unreleased]: https://github.com/Archmonger/ServeStatic/compare/2.1.0...HEAD +[2.1.0]: https://github.com/Archmonger/ServeStatic/compare/2.0.1...2.1.0 [2.0.1]: https://github.com/Archmonger/ServeStatic/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/Archmonger/ServeStatic/compare/1.2.0...2.0.0 [1.2.0]: https://github.com/Archmonger/ServeStatic/compare/1.1.0...1.2.0 diff --git a/src/servestatic/__init__.py b/src/servestatic/__init__.py index fc059c81..a0d53936 100644 --- a/src/servestatic/__init__.py +++ b/src/servestatic/__init__.py @@ -3,6 +3,6 @@ from servestatic.asgi import ServeStaticASGI from servestatic.wsgi import ServeStatic -__version__ = "2.0.1" +__version__ = "2.1.0" __all__ = ["ServeStatic", "ServeStaticASGI"]