Skip to content

Commit

Permalink
Version 0.4.0 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
florimondmanca authored Dec 22, 2023
1 parent 928048f commit 1b8f7f0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions 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/).

## 0.4.0 - 2023-12-22

### Removed

* Dropped Python 3.7 support, as it has reached EOL. (Pull #21)

### Added

* Add official support for Python 3.12. (Pull #21)

### Fixed

* Allow `Content-Type` that contain but are not strictly `text/event-stream`. (Pull #22 by @dbuades)
* Improve error message when `Content-Type` is missing. (Pull #20 by @jamesbraza)

## 0.3.1 - 2023-06-01

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Consume [Server-Sent Event (SSE)](https://html.spec.whatwg.org/multipage/server-
**NOTE**: This is beta software. Please be sure to pin your dependencies.

```bash
pip install httpx-sse=="0.3.*"
pip install httpx-sse=="0.4.*"
```

## Quickstart
Expand Down
2 changes: 1 addition & 1 deletion src/httpx_sse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from ._exceptions import SSEError
from ._models import ServerSentEvent

__version__ = "0.3.1"
__version__ = "0.4.0"

__all__ = [
"__version__",
Expand Down

0 comments on commit 1b8f7f0

Please sign in to comment.