Skip to content

Commit 151ef04

Browse files
Prepare for v1.2.0 (#54)
1 parent 9b5e5d8 commit 151ef04

File tree

8 files changed

+647
-2855
lines changed

8 files changed

+647
-2855
lines changed

.flake8

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[flake8]
22
exclude = __pycache__,built,build,venv
3-
ignore = E203, E266, W503
3+
ignore = E203, E266, W503, E501
44
max-line-length = 88
55
max-complexity = 18
66
per-file-ignores =
77
tests/test_v2.py: E501
88
tests/test_v3.py: E501
9-
tests/test_v31.py: E501
109
select = B,C,E,F,W,T4,B9

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ _test_files/
99
dist/
1010
venv312/
1111
.local
12+
v3_debug_*

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.2.0] - 2025-04-27
9+
10+
- Update objects to the OpenAPI Specification v3.1, by @tyzhnenko.
11+
- Add docstrings to all `v3` classes.
12+
- Upgrade the `v3.OpenAPI` class from OpenAPI version `3.0.3` to `3.1.0`.
13+
814
## [1.1.1] - 2025-03-20
915

1016
- Fix bug in `MARKDOWN` view for `servers` (displaying twice the `description`

openapidocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.1.1"
1+
__version__ = "1.2.0"
22
VERSION = __version__

0 commit comments

Comments
 (0)