Skip to content

Commit b4ab454

Browse files
Changes how httpx version is pinned (#17)
1 parent 3357caa commit b4ab454

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.3] - 2022-10-02
9+
- Changes how `httpx` version is pinned (`<1`)
10+
811
## [1.0.2] - 2022-05-08
912
- Adds support for OpenAPI specification files split into multiple files
1013
https://github.com/Neoteroi/mkdocs-plugins/issues/5

openapidocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.0.2"
1+
VERSION = "1.0.3"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def readme():
4242
"dataclasses==0.7;python_version<'3.7'",
4343
],
4444
extras_require={
45-
"full": ["click~=8.0.3", "Jinja2~=3.0.2", "rich~=12.2.0", "httpx~=0.22.0"]
45+
"full": ["click~=8.0.3", "Jinja2~=3.0.2", "rich~=12.2.0", "httpx<1"]
4646
},
4747
entry_points={
4848
"console_scripts": [

0 commit comments

Comments
 (0)