From 43c9c21e4e2ae5a0d9ab7e98ec8a130f4b80781e Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 12 Oct 2020 23:43:53 +0300 Subject: [PATCH] Bump to 1.6.2 --- .github/workflows/ci.yml | 7 +++++++ CHANGES.rst | 14 ++++++++++++-- MANIFEST.in | 2 +- yarl/__init__.py | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf9d25eb9..a7aeb8a7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/CHANGES.rst b/CHANGES.rst index eb2b7a16b..1c87c8ae1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,16 @@ Changelog .. towncrier release notes start +1.6.2 (2020-10-12) +================== + + +Bugfixes +-------- + +- Provide generated ``.c`` files in TarBall distribution. + `#530 `_ + 1.6.1 (2020-10-12) ================== @@ -22,9 +32,9 @@ Features - Provide wheels for ``aarch64``, ``i686``, ``ppc64le``, ``s390x`` architectures on Linux as well as ``x86_64``. - `#507 `_ + `#507 `_ - Provide wheels for Python 3.9. - `#526 `_ + `#526 `_ Bugfixes -------- diff --git a/MANIFEST.in b/MANIFEST.in index 52b2e5fce..dab6cb9a0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/yarl/__init__.py b/yarl/__init__.py index bd08bd2b4..312f34d73 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.1" +__version__ = "1.6.2" __all__ = ("URL", "cache_clear", "cache_configure", "cache_info")