Skip to content

Commit d9c2af3

Browse files
authored
Prepare release 1.10.12 (#6825)
1 parent 2aaddf6 commit d9c2af3

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.10.12 (2023-07-24)
2+
3+
* Fixes the `maxlen` property being dropped on `deque` validation. Happened only if the deque item has been typed. Changes the `_validate_sequence_like` func, #6581 by @maciekglowka
4+
15
## v1.10.11 (2023-07-04)
26

37
* Importing create_model in tools.py through relative path instead of absolute path - so that it doesn't import V2 code when copied over to V2 branch, #6361 by @SharathHuddar

changes/6581-maciekglowka.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

pydantic/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = 'compiled', 'VERSION', 'version_info'
22

3-
VERSION = '1.10.11'
3+
VERSION = '1.10.12'
44

55
try:
66
import cython # type: ignore

tests/test_fastapi.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ set -e
55

66
cd fastapi
77
git fetch --tags
8-
latest_tag_commit=$(git rev-list --tags --max-count=1)
9-
latest_tag=$(git describe --tags "${latest_tag_commit}")
10-
git checkout "${latest_tag}"
8+
git checkout 0.99.1
119

1210
pip install -r requirements.txt
1311

0 commit comments

Comments
 (0)