Skip to content

Commit

Permalink
Release 23.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
twm committed Nov 4, 2023
1 parent 9e64bee commit 16a7da1
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 12 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -8,6 +8,35 @@ Changelog

.. towncrier release notes start
23.11.0 (2023-11-03)
====================

Features
--------

- When the collector passed to ``treq.collect(response, collector)`` throws an exception, that error will now be returned to the caller of ``collect()`` via the result ``Deferred``, and the underlying HTTP transport will be closed. (`#347 <https://github.com/twisted/treq/issues/347>`__)
- Python 3.11 is now supported. (`#364 <https://github.com/twisted/treq/issues/364>`__)
- Python 3.12 is now supported. (`#375 <https://github.com/twisted/treq/issues/375>`__)
- PyPy 3.9 is now supported. (`#365 <https://github.com/twisted/treq/issues/365>`__)
- PyPy 3.10 is now supported. (`#374 <https://github.com/twisted/treq/issues/374>`__)


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

- The minimum supported Twisted version has increased to 22.10.0. Older versions are no longer tested in CI. (`#374 <https://github.com/twisted/treq/issues/374>`__)
- Support for Python 3.6, which has reached end of support, has been dropped. (`#363 <https://github.com/twisted/treq/issues/363>`__)
- Support for Python 3.7, which reaches end of support 2023-06-27, is deprecated. This is the last release with support for Python 3.7. (`#361 <https://github.com/twisted/treq/issues/361>`__)
- Support for PyPy 3.7, which has reached end of support, has been removed. (`#365 <https://github.com/twisted/treq/issues/365>`__)
- Support for PyPy 3.8, which has reached end of support, is deprecated. This is the last release with support for PyPy 3.8. (`#374 <https://github.com/twisted/treq/issues/374>`__)


Misc
----

- `#349 <https://github.com/twisted/treq/issues/349>`__, `#350 <https://github.com/twisted/treq/issues/350>`__, `#352 <https://github.com/twisted/treq/issues/352>`__


22.2.0 (2022-02-08)
===================

Expand Down
1 change: 0 additions & 1 deletion changelog.d/347.feature.rst

This file was deleted.

Empty file removed changelog.d/349.misc.rst
Empty file.
Empty file removed changelog.d/350.misc.rst
Empty file.
Empty file removed changelog.d/352.misc.rst
Empty file.
1 change: 0 additions & 1 deletion changelog.d/361.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/363.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/364.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/365.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/365.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/374.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/374.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/375.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/treq/_version.py
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version("treq", 22, 2, 0)
__version__ = Version("treq", 23, 11, 0)
__all__ = ["__version__"]

0 comments on commit 16a7da1

Please sign in to comment.