From d75dc95a1e4a3368134640ff8087e5a77b06986e Mon Sep 17 00:00:00 2001 From: mitmproxy release bot Date: Sun, 21 Jan 2024 17:09:27 +0000 Subject: [PATCH] mitmproxy 10.2.2 --- CHANGELOG.md | 4 ++++ mitmproxy/version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b2d279fc..e62c58a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ ## Unreleased: mitmproxy next + + +## 21 January 2024: mitmproxy 10.2.2 + * Fix a regression where clientplayback would break due to eager task execution. ([#6605](https://github.com/mitmproxy/mitmproxy/pull/6605), @mhils) * Fix a regression where WebSocket connections would break due to eager task execution. diff --git a/mitmproxy/version.py b/mitmproxy/version.py index 5e84f10e8..31a286097 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.2.2" MITMPROXY = "mitmproxy " + VERSION # Serialization format version. This is displayed nowhere, it just needs to be incremented by one