From: Seth Michael Larson Date: Sun, 18 Aug 2019 10:19:14 +0000 (-0500) Subject: Release 0.7.1 (#234) X-Git-Tag: 0.7.1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caba78568e2c786591ea8ef72f0c217ab6fcb592;p=thirdparty%2Fhttpx.git Release 0.7.1 (#234) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b78d672..b1cc654e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..ddac380d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README.md +include CHANGELOG.md +include LICENSE.md diff --git a/httpx/__version__.py b/httpx/__version__.py index 0b359bda..aea9e4d9 100644 --- a/httpx/__version__.py +++ b/httpx/__version__.py @@ -1,3 +1,3 @@ __title__ = "httpx" __description__ = "A next generation HTTP client, for Python 3." -__version__ = "0.7.0" +__version__ = "0.7.1" diff --git a/setup.py b/setup.py index 51268abc..e0b42e77 100644 --- a/setup.py +++ b/setup.py @@ -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.*",