From b1a8df1a4b0f0891e56d566fc4487ae3e70ec433 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Tue, 9 Nov 2021 13:42:27 +0200 Subject: [PATCH] Bump to 1.0.0 --- CHANGES.rst | 17 +++++++++++++++++ CHANGES/275.feature | 1 - CHANGES/277.feature | 1 - CHANGES/279.removal | 1 - CHANGES/280.feature | 1 - aiojobs/__init__.py | 2 +- pyproject.toml | 3 ++- 7 files changed, 20 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/275.feature delete mode 100644 CHANGES/277.feature delete mode 100644 CHANGES/279.removal delete mode 100644 CHANGES/280.feature diff --git a/CHANGES.rst b/CHANGES.rst index 01035d7..8940052 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,23 @@ Changelog .. towncrier release notes start +1.0.0 (2021-11-09) +================== + +Features +-------- + +- Switch to ``async-timeout>=4.0.0``. (`#275 `_) +- Added Python 3.10 support. (`#277 `_) +- Added type hints support. (`#280 `_) + + +Deprecations and Removals +------------------------- + +- Dropped Python 3.5 support. (`#279 `_) + + 0.3.0 (2020-11-26) ================== diff --git a/CHANGES/275.feature b/CHANGES/275.feature deleted file mode 100644 index 03079fc..0000000 --- a/CHANGES/275.feature +++ /dev/null @@ -1 +0,0 @@ -Switch to ``async-timeout>=4.0.0``. diff --git a/CHANGES/277.feature b/CHANGES/277.feature deleted file mode 100644 index d0c38b1..0000000 --- a/CHANGES/277.feature +++ /dev/null @@ -1 +0,0 @@ -Added support of python 3.10 diff --git a/CHANGES/279.removal b/CHANGES/279.removal deleted file mode 100644 index ad11501..0000000 --- a/CHANGES/279.removal +++ /dev/null @@ -1 +0,0 @@ -Dropped Python 3.5 support. diff --git a/CHANGES/280.feature b/CHANGES/280.feature deleted file mode 100644 index 14141fe..0000000 --- a/CHANGES/280.feature +++ /dev/null @@ -1 +0,0 @@ -Added type hints support. diff --git a/aiojobs/__init__.py b/aiojobs/__init__.py index d144d01..29a2676 100644 --- a/aiojobs/__init__.py +++ b/aiojobs/__init__.py @@ -6,7 +6,7 @@ """ -__version__ = "0.3.0" +__version__ = "1.0.0" from ._scheduler import Scheduler diff --git a/pyproject.toml b/pyproject.toml index 3f7f950..d0ec963 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ requires-python=">=3.6" description-file="README.rst" classifiers = [ "License :: OSI Approved :: Apache Software License", - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Framework :: AsyncIO", "Programming Language :: Python", @@ -37,3 +37,4 @@ package = "aiojobs" filename = "CHANGES.rst" directory = "CHANGES/" title_format = "{version} ({project_date})" +issue_format = "`#{issue} `_"