Skip to content

Commit

Permalink
Bump to 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 12, 2020
1 parent 0fc86ea commit 43c9c21
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,13 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install cython
uses: py-actions/py-dependency-install@v2
with:
path: requirements/cython.txt
- name: Cythonize
run: |
make cythonize
- name: Make sdist
run:
python setup.py sdist
Expand Down
14 changes: 12 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ Changelog

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


Bugfixes
--------

- Provide generated ``.c`` files in TarBall distribution.
`#530 <https://github.com/aio-libs/multidict/issues/530>`_

1.6.1 (2020-10-12)
==================

Expand All @@ -22,9 +32,9 @@ 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>`_
`#507 <https://github.com/aio-libs/yarl/issues/507>`_
- Provide wheels for Python 3.9.
`#526 <https://github.com/aio-libs/multidict/issues/526>`_
`#526 <https://github.com/aio-libs/yarl/issues/526>`_

Bugfixes
--------
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ include README.rst
graft yarl
graft docs
graft tests
include yarl/*.c
global-exclude *.pyc
global-exclude *.cache
include yarl/_quoting_c.c
exclude yarl/*.html
exclude yarl/*.so
exclude yarl/*.pyd
Expand Down
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.1"
__version__ = "1.6.2"

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

0 comments on commit 43c9c21

Please sign in to comment.