Skip to content

Commit

Permalink
v0.22.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
temoto committed Mar 21, 2023
1 parent c980460 commit 09eee8a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.22.0

https: disable_ssl_certificate_validation caused ValueError: Cannot set verify_mode to CERT_NONE when check_hostname is enabled
https://github.com/httplib2/httplib2/pull/231

build(deps): bump cryptography from 37.0.4 to 38.0.3
Reason from cryptography changelog: Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.0.7, which resolves CVE-2022-3602 and CVE-2022-3786.

0.21.0

http: `Content-Encoding: deflate` must accept zlib encapsulation
Expand Down
2 changes: 1 addition & 1 deletion python2/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"Lai Han",
]
__license__ = "MIT"
__version__ = "0.21.0"
__version__ = "0.22.0"

This comment was marked as off-topic.

Copy link
@Jdfstrokeoffameishorse

Jdfstrokeoffameishorse Jun 24, 2023

"2.0-0.0-0.0-0.2"


import base64
import calendar
Expand Down
2 changes: 1 addition & 1 deletion python3/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"Lai Han",
]
__license__ = "MIT"
__version__ = "0.21.0"
__version__ = "0.22.0"

import base64
import calendar
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys

pkgdir = {"": "python%s" % sys.version_info[0]}
VERSION = "0.21.0"
VERSION = "0.22.0"


# `python setup.py test` uses existing Python environment, no virtualenv, no pip.
Expand Down

0 comments on commit 09eee8a

Please sign in to comment.