Skip to content

Commit

Permalink
Bump to 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 12, 2020
1 parent c8ac5e0 commit c69acfe
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
runs-on: ubuntu-latest
needs: test
# Run only on pushing a tag
# if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Dummy
run: |
Expand Down Expand Up @@ -253,7 +253,6 @@ jobs:
deploy:
name: Deploy
needs: [build-linux, build-binary, build-tarball]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Setup Python 3.8
Expand Down
35 changes: 35 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,41 @@ Changelog

.. towncrier release notes start
1.6.1 (2020-10-12)
==================

Features
--------

- Provide wheels for ``aarch64``, ``i686``, ``ppc64le``, ``s390x`` architectures on
Linux as well as ``x86_64``.
`#507 <https://github.com/aio-libs/multidict/issues/507>`_
- Provide wheels for Python 3.9.
`#526 <https://github.com/aio-libs/multidict/issues/526>`_

Bugfixes
--------

- ``human_repr()`` now always produces valid representation equivalent to the original URL (if the original URL is valid).
`#511 <https://github.com/aio-libs/yarl/issues/511>`_
- Fixed requoting a single percent followed by a percent-encoded character in the Cython implementation.
`#514 <https://github.com/aio-libs/yarl/issues/514>`_
- Fix ValueError when decoding ``%`` which is not followed by two hexadecimal digits.
`#516 <https://github.com/aio-libs/yarl/issues/516>`_
- Fix decoding ``%`` followed by a space and hexadecimal digit.
`#520 <https://github.com/aio-libs/yarl/issues/520>`_
- Fix annotation of ``with_query()``/``update_query()`` methods for ``key=[val1, val2]`` case.
`#528 <https://github.com/aio-libs/yarl/issues/528>`_

Removal
-------

- Drop Python 3.5 support; Python 3.6 is the minimal supported Python version.


----


1.6.0 (2020-09-23)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/511.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/514.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/516.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/520.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/528.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion yarl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ._url import URL, cache_clear, cache_configure, cache_info

__version__ = "1.6.0"
__version__ = "1.6.1"

__all__ = ("URL", "cache_clear", "cache_configure", "cache_info")

0 comments on commit c69acfe

Please sign in to comment.