Skip to content

Commit acbf620

Browse files
committed
Freeze 0.9.5 for release
Signed-off-by: billyrrr <[email protected]>
1 parent 8a7c2ac commit acbf620

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

HISTORY

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ These are all the changes in Flasgger since the 0.6.0 release
77
-----
88
- 'swag_from' supports 'pathlib.Path'
99
- Added support for OpenAPI3 parameter schema parsing [#390](https://github.com/flasgger/flasgger/pull/390)
10+
- Enable optional OpenAPI3 fields [#366](https://github.com/flasgger/flasgger/issues/366)
11+
- Fix access to local $ref definition #367
12+
- Add support for custom validation_function and error_handler
13+
- Accept pathlib.Path objects as path specification for swag_from
14+
- Delay RuntimeError for not installing apispec marshmallow in Schema #384
15+
- Ensure downward compatibility for werkzeug #391
16+
- Support default configuration merging #383
17+
- Update `swagger-ui` to `3.28.0` (improves safety)
1018

1119
0.9.4
1220
-----

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -831,3 +831,8 @@ app.run(debug=True)
831831
In this example you do not have to pass `definitions` but need to add `id` to
832832
your schemas.
833833

834+
## Python2 Compatibility
835+
836+
Version `0.9.5.*` will be the last verison that supports Python2.
837+
Please direct discussions to [#399](https://github.com/flasgger/flasgger/issues/399).
838+

flasgger/__init__.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11

2-
__version__ = '0.9.4'
3-
__author__ = 'Bruno Rocha'
4-
__email__ = '[email protected]'
2+
__version__ = '0.9.5'
3+
__author__ = 'Zixuan Rao'
4+
__email__ = '[email protected]'
5+
6+
# Based on works of Bruno Rocha and the Flasgger open source community
57

68

79
from jsonschema import ValidationError # noqa

0 commit comments

Comments
 (0)