From 0019f4caff6c256a1e4c9f91769a8197cc59350e Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Thu, 23 Nov 2017 18:11:39 +0200 Subject: [PATCH] Bump to 0.15.0 --- CHANGES.rst | 5 +++++ yarl/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 23f450cd1..61f2dc641 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ CHANGES ======= +0.15.0 (2017-11-23) +------------------- + +* Add `raw_path_qs` attribute (#137) + 0.14.2 (2017-11-14) ------------------- diff --git a/yarl/__init__.py b/yarl/__init__.py index 04c2cd750..6dff9b4b2 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -11,7 +11,7 @@ from .quoting import quote, unquote -__version__ = '0.14.2' +__version__ = '0.15.0' __all__ = ['URL']