Skip to content

Commit

Permalink
Release 2.0.0 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
florimondmanca authored Nov 11, 2022
1 parent 147e523 commit 33db22c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 2.0.0 (November 11, 2022)

### Removed

- Drop support for Python 3.6. (Pull #55)

### Added

- Add official support for Python 3.11. (Pull #55)
- Add official support for Python 3.9 and 3.10. (Pull #46 - Thanks @euri10)

### Fixed

- Ensure compatibility with mypy 0.990+, which made `no_implicit_optional` the default. (Pull #53 - Thanks @AllSeeingEyeTolledEweSew)

## 1.0.1 (June 8, 2020)

### Fixed
Expand All @@ -19,7 +34,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed

- Use `sniffio` for auto-detecting the async environment. (Pull #28)

- Enforce 100% test coverage on CI. (Pull #29)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/asgi_lifespan/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from ._exceptions import LifespanNotSupported
from ._manager import LifespanManager

__version__ = "1.0.1"
__version__ = "2.0.0"

__all__ = [
"__version__",
Expand Down
1 change: 0 additions & 1 deletion src/asgi_lifespan/__version__.py

This file was deleted.

0 comments on commit 33db22c

Please sign in to comment.