Skip to content

Commit

Permalink
Prepare for v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dmontagu committed Jul 4, 2023
1 parent 2a0f9e2 commit 83f7d86
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
11 changes: 11 additions & 0 deletions HISTORY.md
@@ -1,3 +1,14 @@
## v2.0.1 (2023-07-04)

First patch release of Pydantic V2

* Extra fields added via `setattr` (i.e. `m.some_extra_field = 'extra_value'`)
are added to `.model_extra` if `model_config` `extra='allowed'`. Fixed #6333, #6365 by @aaraney
* Automatically unpack JSON schema '$ref' for custom types, #6343 by @adriangb
* Fix tagged unions multiple processing in submodels, #6340 by @suharnikov

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

## v2.0 (2023-06-30)

Pydantic V2 is here! :tada:
Expand Down
1 change: 0 additions & 1 deletion changes/6340-suharnikov.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/6343-adriangb.md

This file was deleted.

2 changes: 0 additions & 2 deletions changes/6365-aaraney.md

This file was deleted.

2 changes: 1 addition & 1 deletion pydantic/version.py
Expand Up @@ -3,7 +3,7 @@

__all__ = 'VERSION', 'version_info'

VERSION = '2.0'
VERSION = '2.0.1'
"""The version of Pydantic."""


Expand Down

0 comments on commit 83f7d86

Please sign in to comment.