From ec699a9fad6ae8902c7781d4caec181b3b98b32b Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 17 Sep 2018 02:52:21 +0300 Subject: [PATCH] Bump to 4.4.1 --- docs/changes.rst | 9 +++++++++ multidict/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/changes.rst b/docs/changes.rst index b98d1cf25..4783b369c 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,5 +1,14 @@ .. _changes: +4.4.1 (2018-09-17) +------------------ + +* Fix type annotations (:pr:`283`) + +* Allow to install the library on systems without compilation toolset + (:pr:`281`) + + 4.4.0 (2018-07-04) ------------------ diff --git a/multidict/__init__.py b/multidict/__init__.py index ada32fd69..e6565cd58 100644 --- a/multidict/__init__.py +++ b/multidict/__init__.py @@ -12,7 +12,7 @@ 'MultiDictProxy', 'CIMultiDictProxy', 'MultiDict', 'CIMultiDict', 'upstr', 'istr') -__version__ = '4.4.0' +__version__ = '4.4.1' from ._abc import MultiMapping, MutableMultiMapping