Skip to content

Commit

Permalink
Prepare for 1.10.10 (#6308)
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Jun 30, 2023
1 parent 19e2eb9 commit 0e8a387
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
13 changes: 13 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v2.0b3 (2023-06-16)

Third beta pre-release of Pydantic V2

See the full changelog [here](https://github.com/pydantic/pydantic/releases/tag/v2.0b3)

## v2.0b2 (2023-06-03)

Add `from_attributes` runtime flag to `TypeAdapter.validate_python` and `BaseModel.model_validate`.
Expand Down Expand Up @@ -34,6 +40,13 @@ First pre-release of Pydantic V2!

See [this post](https://docs.pydantic.dev/blog/pydantic-v2-alpha/) for more details.

## v1.10.10 (2023-06-30)

* Add Pydantic `Json` field support to settings management, #6250 by @hramezani
* Fixed literal validator errors for unhashable values, #6188 by @markus1978
* Fixed bug with generics receiving forward refs, #6130 by @mark-todd
* Update install method of FastAPI for internal tests in CI, #6117 by @Kludex

## v1.10.9 (2023-06-07)

* Fix trailing zeros not ignored in Decimal validation, #5968 by @hramezani
Expand Down
1 change: 0 additions & 1 deletion changes/6117-Kludex.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/6130-mark-todd.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/6188-markus1978.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/6250-hramezani.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__ = 'compiled', 'VERSION', 'version_info'

VERSION = '1.10.9'
VERSION = '1.10.10'

try:
import cython # type: ignore
Expand Down

0 comments on commit 0e8a387

Please sign in to comment.