Skip to content

Commit b1a8df1

Browse files
committed
Bump to 1.0.0
1 parent b61b4a9 commit b1a8df1

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
lines changed

CHANGES.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,23 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
1.0.0 (2021-11-09)
18+
==================
19+
20+
Features
21+
--------
22+
23+
- Switch to ``async-timeout>=4.0.0``. (`#275 <https://github.com/aio-libs/aiojobs/issues/275>`_)
24+
- Added Python 3.10 support. (`#277 <https://github.com/aio-libs/aiojobs/issues/277>`_)
25+
- Added type hints support. (`#280 <https://github.com/aio-libs/aiojobs/issues/280>`_)
26+
27+
28+
Deprecations and Removals
29+
-------------------------
30+
31+
- Dropped Python 3.5 support. (`#279 <https://github.com/aio-libs/aiojobs/issues/279>`_)
32+
33+
1734
0.3.0 (2020-11-26)
1835
==================
1936

CHANGES/275.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/277.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/279.removal

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/280.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

aiojobs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88

9-
__version__ = "0.3.0"
9+
__version__ = "1.0.0"
1010

1111
from ._scheduler import Scheduler
1212

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ requires-python=">=3.6"
1414
description-file="README.rst"
1515
classifiers = [
1616
"License :: OSI Approved :: Apache Software License",
17-
"Development Status :: 4 - Beta",
17+
"Development Status :: 5 - Production/Stable",
1818
"Intended Audience :: Developers",
1919
"Framework :: AsyncIO",
2020
"Programming Language :: Python",
@@ -37,3 +37,4 @@ package = "aiojobs"
3737
filename = "CHANGES.rst"
3838
directory = "CHANGES/"
3939
title_format = "{version} ({project_date})"
40+
issue_format = "`#{issue} <https://github.com/aio-libs/aiojobs/issues/{issue}>`_"

0 commit comments

Comments
 (0)