diff --git a/CHANGES.rst b/CHANGES.rst index a553293fb..70b187e4e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,28 @@ Changelog .. towncrier release notes start +1.6.0 (2020-09-23) +================== + +Features +-------- + +- Allow for int and float subclasses in query, while still denying bool. + `#492 `_ + + +Bugfixes +-------- + +- Do not requote arguments in ``URL.build()``, ``with_xxx()`` and in ``/`` operator. + `#502 `_ +- Keep IPv6 brackets in ``origin()``. + `#504 `_ + + +---- + + 1.5.1 (2020-08-01) ================== diff --git a/CHANGES/492.feature b/CHANGES/492.feature deleted file mode 100644 index 4dfc96846..000000000 --- a/CHANGES/492.feature +++ /dev/null @@ -1 +0,0 @@ -Allow for int and float subclasses in query, while still denying bool. diff --git a/CHANGES/502.bugfix b/CHANGES/502.bugfix deleted file mode 100644 index f4b66f589..000000000 --- a/CHANGES/502.bugfix +++ /dev/null @@ -1 +0,0 @@ -Do not requote arguments in ``URL.build()``, ``with_xxx()`` and in ``/`` operator. \ No newline at end of file diff --git a/CHANGES/504.bugfix b/CHANGES/504.bugfix deleted file mode 100644 index e2aa7717a..000000000 --- a/CHANGES/504.bugfix +++ /dev/null @@ -1 +0,0 @@ -Keep IPv6 brackets in ``origin()``. \ No newline at end of file diff --git a/yarl/__init__.py b/yarl/__init__.py index d75e4b540..6aa0acadc 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -1,5 +1,5 @@ from ._url import URL, cache_clear, cache_configure, cache_info -__version__ = "1.6.0a0" +__version__ = "1.6.0" __all__ = ("URL", "cache_clear", "cache_configure", "cache_info")