Skip to content

Commit

Permalink
Version 0.28.0 (#2269)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Mar 9, 2024
1 parent 4a503d8 commit a05ae64
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,16 @@
# Change Log

## 0.28.0 - 2024-03-09

### Added

- Raise `ClientDisconnected` on `send()` when client disconnected (#2220) 12/02/24

### Fixed

- Except `AttributeError` on `sys.stdin.fileno()` for Windows IIS10 (#1947) 29/02/24
- Use `X-Forwarded-Proto` for WebSockets scheme when the proxy provides it (#2258) 01/03/24

## 0.27.1 - 2024-02-10

- Fix spurious LocalProtocolError errors when processing pipelined requests (#2243) 10/02/24
Expand Down
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.27.1"
__version__ = "0.28.0"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit a05ae64

Please sign in to comment.