Skip to content

Commit 87214b1

Browse files
committed
treq 20.9.0rc1
1 parent 23730de commit 87214b1

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ Changelog
88

99
.. towncrier release notes start
1010
11+
20.9.0rc1 (2020-09-27)
12+
======================
13+
14+
Features
15+
--------
16+
17+
- The *url* parameter of :meth:`HTTPClient.request()` (and shortcuts like :meth:`~HTTPClient.get()`) now accept :class:`hyperlink.DecodedURL` and :class:`hyperlink.URL` in addition to :class:`str` and :class:`bytes`. (`#212 <https://github.com/twisted/treq/issues/212>`__)
18+
19+
20+
Improved Documentation
21+
----------------------
22+
23+
- An example of sending and receiving JSON has been added. (`#278 <https://github.com/twisted/treq/issues/278>`__)
24+
25+
1126
20.4.1 (2020-04-16)
1227
===================
1328

changelog.d/212.feature.rst

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

changelog.d/278.doc.rst

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

src/treq/_version.py

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

88
from incremental import Version
99

10-
__version__ = Version('treq', 20, 4, 1)
10+
__version__ = Version('treq', 20, 9, 0, release_candidate=1)
1111
__all__ = ["__version__"]

src/treq/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def request(method, url, **kwargs):
118118
119119
:rtype: Deferred that fires with an IResponse provider.
120120
121-
.. versionchanged:: treq NEXT
121+
.. versionchanged:: treq 20.9.0rc1
122122
123123
The *url* param now accepts :class:`hyperlink.DecodedURL` and
124124
:class:`hyperlink.EncodedURL` objects.

0 commit comments

Comments
 (0)