Skip to content

Commit 97d488a

Browse files
Version 0.13.0.dev2 (#941)
* Update __version__.py * Update CHANGELOG.md * Update setup.py * Update CHANGELOG.md
1 parent d568ecd commit 97d488a

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## 0.13.0.dev2 (May 12th, 2020)
8+
9+
The 0.13.0.dev2 is a *pre-release* version. To install it, use `pip install httpx --pre`.
10+
11+
### Added
12+
13+
- Logging via HTTPCORE_LOG_LEVEL and HTTPX_LOG_LEVEL environment variables
14+
and TRACE level logging. (HTTPCore Pull #79)
15+
16+
### Fixed
17+
18+
- Reuse of connections on HTTP/2 in close concurrency situations. (HTTPCore Pull #81)
19+
- When using an `app=<ASGI app>` observe neater disconnect behaviour instead of sending empty body messages. (Pull #919)
20+
721
## 0.13.0.dev1 (May 6th, 2020)
822

923
The 0.13.0.dev1 is a *pre-release* version. To install it, use `pip install httpx --pre`.

httpx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "httpx"
22
__description__ = "A next generation HTTP client, for Python 3."
3-
__version__ = "0.13.0.dev1"
3+
__version__ = "0.13.0.dev2"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ def get_packages(package):
5757
install_requires=[
5858
"certifi",
5959
"hstspreload",
60+
"sniffio",
6061
"chardet==3.*",
6162
"idna==2.*",
6263
"rfc3986>=1.3,<2",
63-
"httpcore>=0.8.3",
64-
"sniffio",
64+
"httpcore>=0.8.4",
6565
],
6666
classifiers=[
6767
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)