Skip to content

Commit

Permalink
prepare for v1.10.6 (#5157)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmontagu committed Mar 8, 2023
1 parent 943f507 commit bf6b884
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
@@ -1,3 +1,9 @@
## v1.10.6 (2023-03-08)

* Implement logic to support creating validators from non standard callables by using defaults to identify them and unwrapping `functools.partial` and `functools.partialmethod` when checking the signature, #5126 by @JensHeinrich
* Fix mypy plugin for v1.1.1, and fix `dataclass_transform` decorator for pydantic dataclasses, #5111 by @cdce8p
* Raise `ValidationError`, not `ConfigError`, when a discriminator value is unhashable, #4773 by @kurtmckee

## v1.10.5 (2023-02-15)

* Fix broken parametrized bases handling with `GenericModel`s with complex sets of models, #5052 by @MarkusSintonen
Expand Down
1 change: 0 additions & 1 deletion changes/4773-kurtmckee.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/5111-cdce8p.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/5126-JensHeinrich.md

This file was deleted.

2 changes: 1 addition & 1 deletion pydantic/version.py
@@ -1,6 +1,6 @@
__all__ = 'compiled', 'VERSION', 'version_info'

VERSION = '1.10.5'
VERSION = '1.10.6'

try:
import cython # type: ignore
Expand Down

0 comments on commit bf6b884

Please sign in to comment.