diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf47091e..f133bde91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ ## Unreleased: mitmproxy next + + +## 14 December 2023: mitmproxy 10.1.6 + * Fix compatibility with Windows Schannel clients, which previously got confused by CA and leaf certificate sharing the same Subject Key Identifier. ([#6549](https://github.com/mitmproxy/mitmproxy/pull/6549), @driuba and @mhils) diff --git a/mitmproxy/tools/web/static/app.js b/mitmproxy/tools/web/static/app.js index 11a11b85e..f67ebb109 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 5e84f10e8..56d03af7e 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 = "10.1.6" MITMPROXY = "mitmproxy " + VERSION # Serialization format version. This is displayed nowhere, it just needs to be incremented by one