Skip to content

Commit

Permalink
update README and CHANGELOG for 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhrysteve committed Aug 1, 2020
1 parent 7218d0e commit 2ed78a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.11.0 (unreleased)
- drop support for python 2 and marshmallow 2.
Python >= 3.5 and marshmallow >= 3 are now required!

0.10.0 (2020-03-03)
- added ReactJsonSchemaFormJSONSchema extension
- Add support for allow_none (#106 thanks @avilaton!)
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ or mobile device).

#### Installation

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

```
pip install marshmallow-jsonschema
```
Expand All @@ -30,9 +32,6 @@ pip install marshmallow-jsonschema

### Examples

Note that while these examples are using marshmallow v3 API, marshmallow v2 is
also still supported and part of the build. Support will be dropped for v2 in a future release.

#### Simple Example

```python
Expand Down Expand Up @@ -235,4 +234,3 @@ data = json_schema_obj.dump(schema)

# ..and here's your uiSchema!
ui_schema_json = json_schema_obj.dump_uischema(schema)
```

0 comments on commit 2ed78a3

Please sign in to comment.