Skip to content

Commit

Permalink
prepare for v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Mar 3, 2021
1 parent 62bb2ad commit 619ff26
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
13 changes: 13 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## v1.8.1 (2021-03-03)

Bug fixes for regressions and new features from `v1.8`

* allow elements of `Config.field` to update elements of a `Field`, #2461 by @samuelcolvin
* fix validation with a `BaseModel` field and a custom root type, #2449 by @PrettyWood
* expose `Pattern` encoder to `fastapi`, #2444 by @PrettyWood
* enable the Hypothesis plugin to generate a constrained float when the `multiple_of` argument is specified, #2442 by @tobi-lipede-oodle
* Avoid `RecursionError` when using some types like `Enum` or `Literal` with generic models, #2436 by @PrettyWood
* do not overwrite declared `__hash__` in subclasses of a model, #2422 by @PrettyWood
* fix `mypy` complaints on `Path` and `UUID` related custom types, #2418 by @PrettyWood
* Support properly variable length tuples of compound types, #2416 by @PrettyWood

## v1.8 (2021-02-26)

Thank you to pydantic's sponsors:
Expand Down
1 change: 0 additions & 1 deletion changes/2416-PrettyWood.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changes/2442-tobi-lipede-oodle.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changes/2461-samuelcolvin.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.8'
VERSION = '1.8.1'


def version_info() -> str:
Expand Down

0 comments on commit 619ff26

Please sign in to comment.