mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
uprev and generate history
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
## v1.1 (2019-11-07)
|
||||
|
||||
* Add a mypy plugin for type checking `BaseModel.__init__` and more, #722 by @dmontagu
|
||||
* Change return type typehint for `GenericModel.__class_getitem__` to prevent PyCharm warnings, #936 by @dmontagu
|
||||
* Fix usage of `Any` to allow `None`, also support `TypeVar` thus allowing use of un-parameterised collection types
|
||||
e.g. `Dict` and `List`, #962 by @samuelcolvin
|
||||
* Set `FieldInfo` on subfields to fix schema generation for complex nested types, #965 by @samuelcolvin
|
||||
|
||||
## v1.0 (2019-10-23)
|
||||
|
||||
* **Breaking Change:** deprecate the `Model.fields` property, use `Model.__fields__` instead, #883 by @samuelcolvin
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
Add a mypy plugin for type checking `BaseModel.__init__` and more
|
||||
@@ -1 +0,0 @@
|
||||
Change return type typehint for `GenericModel.__class_getitem__` to prevent PyCharm warnings
|
||||
@@ -1,2 +0,0 @@
|
||||
Fix usage of `Any` to allow `None`, also support `TypeVar` thus allowing use of un-parameterised collection types
|
||||
e.g. `Dict` and `List`
|
||||
@@ -1 +0,0 @@
|
||||
Set `FieldInfo` on subfields to fix schema generation for complex nested types
|
||||
+1
-1
@@ -2,4 +2,4 @@ from distutils.version import StrictVersion
|
||||
|
||||
__all__ = ['VERSION']
|
||||
|
||||
VERSION = StrictVersion('1.1a1')
|
||||
VERSION = StrictVersion('1.1')
|
||||
|
||||
Reference in New Issue
Block a user