From 564d439df8ffd53198f1776b603223f5185bdcba Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Tue, 28 Jun 2022 16:01:52 +0200 Subject: [PATCH] bump to 8.1.1 --- CHANGELOG.md | 2 ++ mitmproxy/version.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c8b7be2..2e575e51d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased: mitmproxy next +## 28 June 2022: mitmproxy 8.1.1 + * Support specifying the local address for outgoing connections ([#5364](https://github.com/mitmproxy/mitmproxy/discussions/5364), @meitinger) * Fix a bug where an excess empty chunk has been sent for chunked HEAD request. diff --git a/mitmproxy/version.py b/mitmproxy/version.py index b87cabc79..a047d86f6 100644 --- a/mitmproxy/version.py +++ b/mitmproxy/version.py @@ -2,7 +2,7 @@ import os import subprocess import sys -VERSION = "9.0.0.dev" +VERSION = "8.1.1" MITMPROXY = "mitmproxy " + VERSION # Serialization format version. This is displayed nowhere, it just needs to be incremented by one