Skip to content

Commit

Permalink
Bump to 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 31, 2024
1 parent d5c21f3 commit 3d3e3e4
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 14 deletions.
22 changes: 22 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ CHANGES

.. towncrier release notes start
5.0.0 (2024-10-31)
==================

Features
--------

- Make ``asyncio_timeout`` fully compatible with the standard ``asyncio.Timeout`` but keep backward compatibility with existing ``asyncio_timeout.Timeout`` API. (`#422 <https://github.com/aio-libs/async-timeout/issues/422>`_)


Improved Documentation
----------------------

- On the `CHANGES/README.rst <https://github.com/aio-libs/async-timeout/tree/master/CHANGES/README.rst>`_ page,
a link to the ``Towncrier philosophy`` has been fixed. (`#388 <https://github.com/aio-libs/async-timeout/issues/388>`_)


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

- Drop deprecated sync context manager support, use ``async with timeout(...): ...`` instead. (`#421 <https://github.com/aio-libs/async-timeout/issues/421>`_)


4.0.3 (2023-08-10)
==================

Expand Down
2 changes: 0 additions & 2 deletions CHANGES/388.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/421.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/422.feature.rst

This file was deleted.

11 changes: 1 addition & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,14 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
python_requires = >=3.7
python_requires = >=3.8
packages =
async_timeout
zip_safe = True
include_package_data = True

install_requires =
typing_extensions>=3.6.5; python_version < "3.8"


[flake8]
exclude = .git,.env,__pycache__,.eggs
max-line-length = 88
Expand Down

0 comments on commit 3d3e3e4

Please sign in to comment.