From 8e669fa8f8b296d1a1c41036dbc807250283ce0d Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Wed, 2 Oct 2024 15:47:06 -0700 Subject: [PATCH] 2.1.0 --- CHANGELOG.md | 7 ++++++- src/servestatic/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87c9b329..c709631b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ Using the following categories, list your changes in this order: ## [Unreleased] +- Nothing (yet) + +## [2.1.0] - 2024-10-02 + ### Added - Support Python 3.13. @@ -67,7 +71,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"]