From b7d9f9952f845befda3f72cd40b6144a45b7c568 Mon Sep 17 00:00:00 2001 From: Mark Bakhit Date: Sun, 27 Oct 2024 14:56:43 -0700 Subject: [PATCH] v2.1.1 (#58) --- CHANGELOG.md | 9 +++++++-- src/servestatic/__init__.py | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a506fda..f1227af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,13 @@ Using the following categories, list your changes in this order: ## [Unreleased] +- Nothing (yet)! + +## [2.1.1] - 2024-10-27 + ### Fixed -- Make sure WSGI `SlicedFile` is closed properly to prevent memory leaks. +- Make sure WSGI `SlicedFile` is closed properly to prevent subtle bugs. ## [2.1.0] - 2024-10-02 @@ -76,7 +80,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.1.0...HEAD +[Unreleased]: https://github.com/Archmonger/ServeStatic/compare/2.1.1...HEAD +[2.1.1]: https://github.com/Archmonger/ServeStatic/compare/2.1.0...2.1.1 [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 diff --git a/src/servestatic/__init__.py b/src/servestatic/__init__.py index a0d5393..70d2f11 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.1.0" +__version__ = "2.1.1" __all__ = ["ServeStatic", "ServeStaticASGI"]