Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[flake8]
exclude = __pycache__,built,build,venv
ignore = E203, E266, W503
ignore = E203, E266, W503, E501
max-line-length = 88
max-complexity = 18
per-file-ignores =
tests/test_v2.py: E501
tests/test_v3.py: E501
tests/test_v31.py: E501
select = B,C,E,F,W,T4,B9
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ _test_files/
dist/
venv312/
.local
v3_debug_*
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.2.0] - 2025-04-27

- Update objects to the OpenAPI Specification v3.1, by @tyzhnenko.
- Add docstrings to all `v3` classes.
- Upgrade the `v3.OpenAPI` class from OpenAPI version `3.0.3` to `3.1.0`.

## [1.1.1] - 2025-03-20

- Fix bug in `MARKDOWN` view for `servers` (displaying twice the `description`
Expand Down
2 changes: 1 addition & 1 deletion openapidocs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.1.1"
__version__ = "1.2.0"
VERSION = __version__
Loading