httpcore2 2.1.0__tar.gz → 2.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {httpcore2-2.1.0 → httpcore2-2.2.0}/CHANGELOG.md +4 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/PKG-INFO +5 -1
- {httpcore2-2.1.0 → httpcore2-2.2.0}/.gitignore +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/LICENSE.md +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/README.md +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/__init__.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_api.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/__init__.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/connection.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/connection_pool.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/http11.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/http2.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/http_proxy.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/interfaces.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_async/socks_proxy.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_backends/__init__.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_backends/anyio.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_backends/auto.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_backends/base.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_backends/mock.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_backends/sync.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_backends/trio.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_exceptions.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_models.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_ssl.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/__init__.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/connection.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/connection_pool.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/http11.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/http2.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/http_proxy.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/interfaces.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_sync/socks_proxy.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_synchronization.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_trace.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/_utils.py +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/httpcore2/py.typed +0 -0
- {httpcore2-2.1.0 → httpcore2-2.2.0}/pyproject.toml +0 -0
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
6
|
|
|
7
|
+
## 2.2.0 (May 16th, 2026)
|
|
8
|
+
|
|
9
|
+
No changes since `2.1.0`. Version bumped to stay in lockstep with `httpx2`.
|
|
10
|
+
|
|
7
11
|
## 2.1.0 (May 15th, 2026)
|
|
8
12
|
|
|
9
13
|
### Removed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: httpcore2
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: A minimal low-level HTTP client.
|
|
5
5
|
Project-URL: Documentation, https://www.encode.io/httpcore
|
|
6
6
|
Project-URL: Homepage, https://www.encode.io/httpcore/
|
|
@@ -154,6 +154,10 @@ All notable changes to this project will be documented in this file.
|
|
|
154
154
|
|
|
155
155
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
156
156
|
|
|
157
|
+
## 2.2.0 (May 16th, 2026)
|
|
158
|
+
|
|
159
|
+
No changes since `2.1.0`. Version bumped to stay in lockstep with `httpx2`.
|
|
160
|
+
|
|
157
161
|
## 2.1.0 (May 15th, 2026)
|
|
158
162
|
|
|
159
163
|
### Removed
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|