Skip to content

Commit

Permalink
Bump to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Nov 9, 2021
1 parent b61b4a9 commit b1a8df1
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ Changelog

.. towncrier release notes start
1.0.0 (2021-11-09)
==================

Features
--------

- Switch to ``async-timeout>=4.0.0``. (`#275 <https://github.com/aio-libs/aiojobs/issues/275>`_)
- Added Python 3.10 support. (`#277 <https://github.com/aio-libs/aiojobs/issues/277>`_)
- Added type hints support. (`#280 <https://github.com/aio-libs/aiojobs/issues/280>`_)


Deprecations and Removals
-------------------------

- Dropped Python 3.5 support. (`#279 <https://github.com/aio-libs/aiojobs/issues/279>`_)


0.3.0 (2020-11-26)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/275.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/277.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/279.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/280.feature

This file was deleted.

2 changes: 1 addition & 1 deletion aiojobs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


__version__ = "0.3.0"
__version__ = "1.0.0"

from ._scheduler import Scheduler

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -37,3 +37,4 @@ package = "aiojobs"
filename = "CHANGES.rst"
directory = "CHANGES/"
title_format = "{version} ({project_date})"
issue_format = "`#{issue} <https://github.com/aio-libs/aiojobs/issues/{issue}>`_"

0 comments on commit b1a8df1

Please sign in to comment.