Skip to content

Commit

Permalink
Version 0.22.0 (#2048)
Browse files Browse the repository at this point in the history
* SOCKS proxy support

* Version 0.22.0

* Link to socksio
  • Loading branch information
tomchristie committed Jan 26, 2022
1 parent 31944b9 commit 15c51b9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.

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

## 0.22.0 (26th January, 2022)

### Added

* Support for [the SOCKS5 proxy protocol](https://www.python-httpx.org/advanced/#socks) via [the `socksio` package](https://github.com/sethmlarson/socksio). (#2034)
* Support for custom headers in multipart/form-data requests (#1936)

### Fixed

* Don't perform unreliable close/warning on `__del__` with unclosed clients. (#2026)
* Fix `Headers.update(...)` to correctly handle repeated headers (#2038)

## 0.21.3 (6th January, 2022)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion httpx/__version__.py
@@ -1,3 +1,3 @@
__title__ = "httpx"
__description__ = "A next generation HTTP client, for Python 3."
__version__ = "0.21.3"
__version__ = "0.22.0"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -60,7 +60,7 @@ def get_packages(package):
"charset_normalizer",
"sniffio",
"rfc3986[idna2008]>=1.3,<2",
"httpcore>=0.14.0,<0.15.0",
"httpcore>=0.14.5,<0.15.0",
"async_generator; python_version < '3.7'"
],
extras_require={
Expand Down

0 comments on commit 15c51b9

Please sign in to comment.