Skip to content

Commit

Permalink
v2.1.1 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger authored Oct 27, 2024
1 parent 571074c commit b7d9f99
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/servestatic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit b7d9f99

Please sign in to comment.