From ad9be1ae8a63979a590e8eb07f82805b5aa48511 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Tue, 5 Oct 2021 13:58:49 +0300 Subject: [PATCH] Bump to 1.7.0a3 --- CHANGES.rst | 12 ++++++++++++ CHANGES/582.feature | 1 - CHANGES/622.feature.1.rst | 1 - CHANGES/622.feature.2.rst | 1 - CHANGES/622.feature.3.rst | 1 - yarl/__init__.py | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 CHANGES/582.feature delete mode 100644 CHANGES/622.feature.1.rst delete mode 100644 CHANGES/622.feature.2.rst delete mode 100644 CHANGES/622.feature.3.rst diff --git a/CHANGES.rst b/CHANGES.rst index 58ee2e482..3a26e2d1a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,18 @@ Changelog .. towncrier release notes start +1.7.0a3 (2021-10-05) +==================== + +Features +-------- + +- Add `__bytes__()` magic method so that `bytes(url)` will work and use optimal ASCII encoding. (`#582 `_) +- Started shipping platform-specific arm64 wheels for Apple Silicon. (`#622 `_) +- Started shipping platform-specific wheels with the ``musl`` tag targeting typical Alpine Linux runtimes. (`#622 `_) +- Added support for Python 3.10. (`#622 `_) + + 1.6.3 (2020-11-14) ================== diff --git a/CHANGES/582.feature b/CHANGES/582.feature deleted file mode 100644 index 2b6766dc2..000000000 --- a/CHANGES/582.feature +++ /dev/null @@ -1 +0,0 @@ -Add `__bytes__()` magic method so that `bytes(url)` will work and use optimal ASCII encoding. diff --git a/CHANGES/622.feature.1.rst b/CHANGES/622.feature.1.rst deleted file mode 100644 index 899207223..000000000 --- a/CHANGES/622.feature.1.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for Python 3.10. diff --git a/CHANGES/622.feature.2.rst b/CHANGES/622.feature.2.rst deleted file mode 100644 index f29e90790..000000000 --- a/CHANGES/622.feature.2.rst +++ /dev/null @@ -1 +0,0 @@ -Started shipping platform-specific wheels with the ``musl`` tag targeting typical Alpine Linux runtimes. diff --git a/CHANGES/622.feature.3.rst b/CHANGES/622.feature.3.rst deleted file mode 100644 index 6652d85ce..000000000 --- a/CHANGES/622.feature.3.rst +++ /dev/null @@ -1 +0,0 @@ -Started shipping platform-specific arm64 wheels for Apple Silicon. diff --git a/yarl/__init__.py b/yarl/__init__.py index c0dc5656d..439286079 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.7.0a0" +__version__ = "1.7.0a3" __all__ = ("URL", "cache_clear", "cache_configure", "cache_info")