Skip to content

Commit

Permalink
uprev and add history
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Nov 30, 2020
1 parent b1bb6e0 commit 08922c3
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 7 deletions.
13 changes: 13 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## v1.7.3 (2020-11-30)

Thank you to pydantic's sponsors:
@timdrijvers, @BCarley, @chdsbd, @tiangolo, @matin, @linusg, @kevinalh, @jorgecarleitao, @koxudaxi, @primer-api,
@mkeen, @meadsteve for their kind support.

* fix: set right default value for required (optional) fields, #2142 by @PrettyWood
* fix: support `underscore_attrs_are_private` with generic models, #2138 by @PrettyWood
* fix: update all modified field values in `root_validator` when `validate_assignment` is on, #2116 by @PrettyWood
* Allow pickling of `pydantic.dataclasses.dataclass` dynamically created from a built-in `dataclasses.dataclass`, #2111 by @aimestereo
* Fix a regression where Enum fields would not propagate keyword arguments to the schema, #2109 by @bm424
* Ignore `__doc__` as private attribute when `Config.underscore_attrs_are_private` is set, #2090 by @PrettyWood

## v1.7.2 (2020-11-01)

* fix slow `GenericModel` concrete model creation, allow `GenericModel` concrete name reusing in module, #2078 by @MrMrRobat
Expand Down
1 change: 0 additions & 1 deletion changes/2090-PrettyWood.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/2109-bm424.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/2111-aimestereo.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/2116-PrettyWood.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/2138-PrettyWood.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/2142-PrettyWood.md

This file was deleted.

2 changes: 1 addition & 1 deletion pydantic/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__all__ = 'VERSION', 'version_info'

VERSION = '1.7.2'
VERSION = '1.7.3'


def version_info() -> str:
Expand Down

0 comments on commit 08922c3

Please sign in to comment.