Skip to content

Commit

Permalink
treq 20.3.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
twm committed Mar 16, 2020
1 parent 095c21e commit 39ec287
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 8 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,38 @@ Changelog
.. default-role:: any

.. towncrier release notes start
20.3.0rc1 (2020-03-15)
======================

Features
--------

- Python 3.7 support. (`#228 <https://github.com/twisted/treq/issues/228>`__)


Bugfixes
--------

- `treq.testing.RequestTraversalAgent` now passes its memory reactor to the `twisted.web.server.Site` it creates, preventing the `Site` from polluting the global reactor. (`#225 <https://github.com/twisted/treq/issues/225>`__)
- `treq.testing` no longer generates deprecation warnings about `twisted.test.proto_helpers.MemoryReactor`. (`#253 <https://github.com/twisted/treq/issues/253>`__)


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

- The ``download_file.py`` example has been updated to do a streaming download with *unbuffered=True*. (`#233 <https://github.com/twisted/treq/issues/233>`__)
- The *agent* parameter to `treq.request()` has been documented. (`#235 <https://github.com/twisted/treq/issues/235>`__)
- The type of the *headers* element of a response tuple passed to `treq.testing.RequestSequence` is now correctly documented as `str`. (`#237 <https://github.com/twisted/treq/issues/237>`__)


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

- Drop support for Python 3.4. (`#240 <https://github.com/twisted/treq/issues/240>`__)


Misc
----

- `#247 <https://github.com/twisted/treq/issues/247>`__, `#248 <https://github.com/twisted/treq/issues/248>`__, `#249 <https://github.com/twisted/treq/issues/249>`__
1 change: 0 additions & 1 deletion changelog.d/225.bugfix.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/233.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/235.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/237.doc.rst

This file was deleted.

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

This file was deleted.

Empty file removed changelog.d/247.misc.rst
Empty file.
Empty file removed changelog.d/248.misc.rst
Empty file.
Empty file removed changelog.d/249.misc.rst
Empty file.
1 change: 0 additions & 1 deletion changelog.d/253.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/treq/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version('treq', 18, 6, 0)
__version__ = Version('treq', 20, 3, 0, release_candidate=1)
__all__ = ["__version__"]

0 comments on commit 39ec287

Please sign in to comment.