Release 0.7.1 (#234)

This commit is contained in:
Seth Michael Larson 2019-08-18 05:19:14 -05:00 committed by GitHub
parent b46d9ea2b8
commit caba78568e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## 0.7.1 (August 18, 2019)
- Include files with source distribution to be installable. (Pull #233)
## 0.7.0 (August 17, 2019)
- Add the `trust_env` property to `BaseClient`. (Pull #187)

3
MANIFEST.in Normal file
View File

@ -0,0 +1,3 @@
include README.md
include CHANGELOG.md
include LICENSE.md

View File

@ -1,3 +1,3 @@
__title__ = "httpx"
__description__ = "A next generation HTTP client, for Python 3."
__version__ = "0.7.0"
__version__ = "0.7.1"

View File

@ -48,6 +48,7 @@ setup(
author_email="tom@tomchristie.com",
package_data={"httpx": ["py.typed"]},
packages=get_packages("httpx"),
include_package_data=True,
install_requires=[
"certifi",
"chardet==3.*",