uprev and generate history

This commit is contained in:
Samuel Colvin
2019-11-07 15:20:27 +00:00
parent 17b5ff42c1
commit 8a261c1dfa
6 changed files with 9 additions and 6 deletions
+8
View File
@@ -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
View File
@@ -1 +0,0 @@
Add a mypy plugin for type checking `BaseModel.__init__` and more
-1
View File
@@ -1 +0,0 @@
Change return type typehint for `GenericModel.__class_getitem__` to prevent PyCharm warnings
-2
View File
@@ -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
View File
@@ -1 +0,0 @@
Set `FieldInfo` on subfields to fix schema generation for complex nested types
+1 -1
View File
@@ -2,4 +2,4 @@ from distutils.version import StrictVersion
__all__ = ['VERSION']
VERSION = StrictVersion('1.1a1')
VERSION = StrictVersion('1.1')