From ce946894a0ce80512836e367099a2bb8410db513 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 30 Apr 2018 16:15:25 +0300 Subject: [PATCH] Bump to 1.2.0 --- CHANGES.rst | 6 ++++-- yarl/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d6268ebc5..b7b4901b4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,12 @@ CHANGES ======= -1.2.0 (XXXX-XX-XX) +1.2.0 (2018-04-30) ------------------ -* Forbid inheritance, replace __init__ with __new__ (#171) +* Forbid inheritance, replace `__init__` with `__new__` (#171) + +* Support PEP-561 (provide type hinting marker) (#182) 1.1.1 (2018-02-17) ------------------ diff --git a/yarl/__init__.py b/yarl/__init__.py index d9b5d67a4..694919d14 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -10,7 +10,7 @@ from .quoting import _Quoter, _Unquoter -__version__ = '1.1.1' +__version__ = '1.2.0' __all__ = ('URL',)