From 8b88e8f0a5f86109a6e371b03035f2e656b48a87 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Wed, 4 Aug 2021 15:01:16 +0200 Subject: [PATCH] mitmproxy 7.0.2 --- CHANGELOG.md | 4 ++++ mitmproxy/version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 565f3dc04..814577805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +## 4 August 2021: mitmproxy 7.0.2 + +* Fix a WebSocket crash introduced in 7.0.1 (@mhils) + ## 3 August 2021: mitmproxy 7.0.1 * Performance: Re-use OpenSSL contexts to enable TLS session resumption (@mhils) diff --git a/mitmproxy/version.py b/mitmproxy/version.py index 67fe27b30..a89a6e081 100644 --- a/mitmproxy/version.py +++ b/mitmproxy/version.py @@ -2,7 +2,7 @@ import os import subprocess import sys -VERSION = "8.0.0.dev" +VERSION = "7.0.2" MITMPROXY = "mitmproxy " + VERSION # Serialization format version. This is displayed nowhere, it just needs to be incremented by one