Skip to content

Commit

Permalink
Version 0.31.0 (#2224)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Jul 24, 2023
1 parent 7c8ca17 commit a8b8856
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 0.31.0

July 24, 2023

### Added

* Officially support Python 3.12 [#2214](https://github.com/encode/starlette/pull/2214).
* Support AnyIO 4.0 [#2211](https://github.com/encode/starlette/pull/2211).
* Strictly type annotate Starlette (strict mode on mypy) [#2180](https://github.com/encode/starlette/pull/2180).

### Fixed

* Don't group duplicated headers on a single string when using the `TestClient` [#2219](https://github.com/encode/starlette/pull/2219).

## 0.30.0

July 13, 2023
Expand Down Expand Up @@ -154,7 +168,7 @@ This release replaces the underlying HTTP client used on the `TestClient` (`requ
### Added
* Add `WebSocketException` and support for WebSocket exception handlers [#1263](https://github.com/encode/starlette/pull/1263).
* Add `middleware` parameter to `Mount` class [#1649](https://github.com/encode/starlette/pull/1649).
* Officially support Python 3.11 [1863](https://github.com/encode/starlette/pull/1863).
* Officially support Python 3.11 [#1863](https://github.com/encode/starlette/pull/1863).
* Implement `__repr__` for route classes [#1864](https://github.com/encode/starlette/pull/1864).

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion starlette/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.30.0"
__version__ = "0.31.0"

0 comments on commit a8b8856

Please sign in to comment.