Skip to content

Commit

Permalink
bump version & release 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhrysteve committed Oct 21, 2021
1 parent c182efc commit 138ac83
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
0.13.0 (unreleased)
0.13.0 (2021-10-21)
- Fixes to field default #151
- The default value for nested fields wasn't serialized.
- The default value for other fields may be a callable and in that case it shouldn't be emitted into the schema.
- set int to "integer" instead of "number" #152
- Added fields.IPInterface marshmallow field type to python types mapping #155
- 0.13.x is planned to be the last major release to officially support python 3.6
which is EOL in December 2021
- minimum supported version of marshmallow is currently 3.11.0 (technically this was
true as of 0.12.0 because of the use of fields.IPInterface
0.12.0 (2021-05-22)
- Add support for validate.Equal #135
- Added fields.IP marshmallow field type to python types mapping #137
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ or mobile device).

#### Installation

Requires python>=3.6 and marshmallow>=3. (For python 2 & marshmallow 2 support, please use marshmallow-jsonschema<0.11)
Requires python>=3.6 and marshmallow>=3.11. (For python 2 & marshmallow 2 support, please use marshmallow-jsonschema<0.11)

```
pip install marshmallow-jsonschema
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
marshmallow>=3
marshmallow>=3.11
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def read(fname):

setup(
name="marshmallow-jsonschema",
version="0.12.0",
version="0.13.0",
description="JSON Schema Draft v7 (http://json-schema.org/)"
" formatting with marshmallow",
long_description=long_description,
Expand Down

0 comments on commit 138ac83

Please sign in to comment.