diff --git a/CHANGELOG.md b/CHANGELOG.md index 88e78d35c..02b1a7f91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ ## Unreleased: mitmproxy next + +## 02 October 2024: mitmproxy 11.0.0 + - mitmproxy now supports transparent HTTP/3 proxying. ([#7202](https://github.com/mitmproxy/mitmproxy/pull/7202), @errorxyz, @meitinger, @mhils) - Add HTTP3 support in HTTPS reverse-proxy mode. diff --git a/mitmproxy/tools/web/static/app.css b/mitmproxy/tools/web/static/app.css index 019efa290..9691ceda6 100644 Binary files a/mitmproxy/tools/web/static/app.css and b/mitmproxy/tools/web/static/app.css differ diff --git a/mitmproxy/tools/web/static/app.js b/mitmproxy/tools/web/static/app.js index 64d9a9786..a1d882229 100644 Binary files a/mitmproxy/tools/web/static/app.js and b/mitmproxy/tools/web/static/app.js differ diff --git a/mitmproxy/version.py b/mitmproxy/version.py index d9ea06e61..8b9b3eee3 100644 --- a/mitmproxy/version.py +++ b/mitmproxy/version.py @@ -2,7 +2,7 @@ import os import subprocess import sys -VERSION = "11.0.0.dev" +VERSION = "11.0.0" MITMPROXY = "mitmproxy " + VERSION # Serialization format version. This is displayed nowhere, it just needs to be incremented by one