aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2022-10-29 15:27:41 +0300
committerSergey Shepelev <temotor@gmail.com>2022-10-29 15:27:41 +0300
commit3094c64ee75e13530c62217180bf2a983084257e (patch)
tree49e4928be3ec945bf41138016e11f206846f0511
parenteefcf9e65929ab0cc1812173679b3d967edab6c3 (diff)
downloadhttplib2-3094c64ee75e13530c62217180bf2a983084257e.tar.gz
v0.21.0 release
Signed-off-by: Sergey Shepelev <temotor@gmail.com>
-rw-r--r--CHANGELOG7
-rw-r--r--MANIFEST.in1
-rw-r--r--python2/httplib2/__init__.py2
-rw-r--r--python3/httplib2/__init__.py2
-rwxr-xr-xscript/test1
-rw-r--r--[-rwxr-xr-x]setup.py4
6 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index fca43eb..8aceff9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+0.21.0
+
+ http: `Content-Encoding: deflate` must accept zlib encapsulation
+ https://github.com/httplib2/httplib2/pull/230
+
+ Begin support and CI against CPython 3.10 and 3.11.
+
0.20.4
proxy: support proxy urls with ipv6 address
diff --git a/MANIFEST.in b/MANIFEST.in
index b9fad29..b03e865 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -7,6 +7,7 @@ include CHANGELOG
include LICENSE
include requirements*.txt
exclude codecov.yml
+exclude .pre-commit-*.yaml
prune ref
global-exclude __pycache__
global-exclude *.py[cod]
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 51c3611..1d8f84a 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -20,7 +20,7 @@ __contributors__ = [
"Lai Han",
]
__license__ = "MIT"
-__version__ = "0.20.4"
+__version__ = "0.21.0"
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index 8578c82..508c3d8 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -16,7 +16,7 @@ __contributors__ = [
"Lai Han",
]
__license__ = "MIT"
-__version__ = "0.20.4"
+__version__ = "0.21.0"
import base64
import calendar
diff --git a/script/test b/script/test
index 42677be..10545cd 100755
--- a/script/test
+++ b/script/test
@@ -43,6 +43,7 @@ main() {
fi
if enabled check_version ; then
+ rm -f dist/*.gz
# TODO: sdist bdist_wheel
# but wheels don't roll well with our 2/3 split code base
python setup.py sdist
diff --git a/setup.py b/setup.py
index baf5e66..8d61663 100755..100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import setuptools.command.test
import sys
pkgdir = {"": "python%s" % sys.version_info[0]}
-VERSION = "0.20.4"
+VERSION = "0.21.0"
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.
@@ -106,6 +106,8 @@ A comprehensive HTTP client library, ``httplib2`` supports many features left ou
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
],