Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ Releases are triggered on commits tagged with `release-` (for example


## Changelog
* 0.10.4:
- Made flasgger an optional dependency (falls back to a static landing page when absent), thanks @AdamWill and @mgorny
- Fixed invalid escape sequence SyntaxWarnings on Python 3.12+, thanks @hseg
- Included tox.ini and the tests in the source distribution, thanks @Mirochill
- Added Python 3.13 and 3.14 to the test matrix and classifiers
* 0.10.3:
- Fixed the /bytes endpoint to return bytes (not bytearray) for WSGI compliance with newer Werkzeug, thanks @swt2c
- Dropped support for Python 3.7
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Repository = "https://github.com/psf/httpbin"

[project]
name = "httpbin"
version = "0.10.3"
version = "0.10.4"
requires-python = ">=3.8"
description = "HTTP Request and Response Service"
readme = "README.md"
Expand Down
Loading