Version 0.16 (#1347)
This commit is contained in:
parent
160e3088cd
commit
dbbcf438cd
13
CHANGELOG.md
13
CHANGELOG.md
@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
## 0.16.0 (October 6th, 2020)
|
||||
|
||||
### Changed
|
||||
|
||||
* Preserve HTTP header casing. (Pull #1338, encode/httpcore#216, python-hyper/h11#104)
|
||||
* Drop `response.next()` and `response.anext()` methods in favour of `response.next_request` attribute. (Pull #1339)
|
||||
* Closed clients now raise a runtime error if attempting to send a request. (Pull #1346)
|
||||
|
||||
### Added
|
||||
|
||||
* Add Python 3.9 to officially supported versions.
|
||||
* Type annotate `__enter__`/`__exit__`/`__aenter__`/`__aexit__` in a way that supports subclasses of `Client` and `AsyncClient`. (Pull #1336)
|
||||
|
||||
## 0.15.5 (October 1st, 2020)
|
||||
|
||||
### Added
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
HTTPX is a fully featured HTTP client for Python 3, which provides sync and async APIs, and support for both HTTP/1.1 and HTTP/2.
|
||||
|
||||
**Note**: _HTTPX should be considered in beta. We believe we've got the public API to
|
||||
a stable point now, but would strongly recommend pinning your dependencies to the `0.15.*`
|
||||
a stable point now, but would strongly recommend pinning your dependencies to the `0.16.*`
|
||||
release, so that you're able to properly review [API changes between package updates](https://github.com/encode/httpx/blob/master/CHANGELOG.md). A 1.0 release is expected to be issued sometime in late 2020._
|
||||
|
||||
---
|
||||
|
||||
@ -27,7 +27,7 @@ HTTPX is a fully featured HTTP client for Python 3, which provides sync and asyn
|
||||
!!! note
|
||||
HTTPX should currently be considered in beta.
|
||||
|
||||
We believe we've got the public API to a stable point now, but would strongly recommend pinning your dependencies to the `0.15.*` release, so that you're able to properly review [API changes between package updates](https://github.com/encode/httpx/blob/master/CHANGELOG.md).
|
||||
We believe we've got the public API to a stable point now, but would strongly recommend pinning your dependencies to the `0.16.*` release, so that you're able to properly review [API changes between package updates](https://github.com/encode/httpx/blob/master/CHANGELOG.md).
|
||||
|
||||
A 1.0 release is expected to be issued sometime in late 2020.
|
||||
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
__title__ = "httpx"
|
||||
__description__ = "A next generation HTTP client, for Python 3."
|
||||
__version__ = "0.15.5"
|
||||
__version__ = "0.16.0"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user