Skip to content

Commit

Permalink
Changes how httpx version is pinned (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato authored Oct 2, 2022
1 parent 3357caa commit b4ab454
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.3] - 2022-10-02
- Changes how `httpx` version is pinned (`<1`)

## [1.0.2] - 2022-05-08
- Adds support for OpenAPI specification files split into multiple files
https://github.com/Neoteroi/mkdocs-plugins/issues/5
Expand Down
2 changes: 1 addition & 1 deletion openapidocs/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.0.2"
VERSION = "1.0.3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def readme():
"dataclasses==0.7;python_version<'3.7'",
],
extras_require={
"full": ["click~=8.0.3", "Jinja2~=3.0.2", "rich~=12.2.0", "httpx~=0.22.0"]
"full": ["click~=8.0.3", "Jinja2~=3.0.2", "rich~=12.2.0", "httpx<1"]
},
entry_points={
"console_scripts": [
Expand Down

0 comments on commit b4ab454

Please sign in to comment.