Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8a261c1

Browse files
committed
uprev and generate history
1 parent 17b5ff4 commit 8a261c1

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

HISTORY.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v1.1 (2019-11-07)
2+
3+
* Add a mypy plugin for type checking `BaseModel.__init__` and more, #722 by @dmontagu
4+
* Change return type typehint for `GenericModel.__class_getitem__` to prevent PyCharm warnings, #936 by @dmontagu
5+
* Fix usage of `Any` to allow `None`, also support `TypeVar` thus allowing use of un-parameterised collection types
6+
e.g. `Dict` and `List`, #962 by @samuelcolvin
7+
* Set `FieldInfo` on subfields to fix schema generation for complex nested types, #965 by @samuelcolvin
8+
19
## v1.0 (2019-10-23)
210

311
* **Breaking Change:** deprecate the `Model.fields` property, use `Model.__fields__` instead, #883 by @samuelcolvin

changes/722-dmontagu.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/936-dmontagu.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/962-samuelcolvin.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

changes/965-samuelcolvin.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

pydantic/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ['VERSION']
44

5-
VERSION = StrictVersion('1.1a1')
5+
VERSION = StrictVersion('1.1')

0 commit comments

Comments
 (0)