From 7766b1687a2f28fab395802ee607eac2c6bc3e18 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Tue, 16 Jun 2026 17:38:28 -0400 Subject: [PATCH] Release v0.10.4 Bump version to 0.10.4 to ship the fixes accumulated on main since 0.10.3: flasgger made optional, invalid escape sequence SyntaxWarnings fixed, and tox.ini + tests included in the source distribution. --- README.md | 5 +++++ pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f024400b..cd82d122 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index d5cc9f0e..bcb64679 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"