Skip to content

Commit 934adc1

Browse files
committed
prepare for v1.10.0a2 release
1 parent f708c32 commit 934adc1

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

HISTORY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v1.10.0a2 (2022-08-24)
2+
3+
* Update requirement to `typing_extensions>=4.1.0` to guarantee `dataclass_transform` is available, #4424 by @commonism
4+
* Add Explosion and AWS to main sponsors, #4413 by @samuelcolvin
5+
* Update documentation for `copy_on_model_validation` to reflect recent changes, #4369 by @samuelcolvin
6+
17
## v1.10.0a1 (2022-08-22)
28

39
* Refactor the whole _pydantic_ `dataclass` decorator to really act like its standard lib equivalent.
@@ -10,6 +16,7 @@
1016
- The `compiled` boolean (whether _pydantic_ is compiled with cython) has been moved from `main.py` to `version.py`
1117
- Now that `Config.extra` is supported, `dataclass` ignores by default extra arguments (like `BaseModel`)
1218
* Fix PEP487 `__set_name__` protocol in `BaseModel` for PrivateAttrs, #4407 by @tlambert03
19+
* Allow for custom parsing of environment variables via `parse_env_var` in `Config`, #4406 by @acmiyaguchi
1320
* Rename `master` to `main`, #4405 by @hramezani
1421
* Fix `StrictStr` does not raise `ValidationError` when `max_length` is present in `Field`, #4388 by @hramezani
1522
* Make `SecretStr` and `SecretBytes` hashable, #4387 by @chbndrhnns

changes/4369-samuelcolvin.md

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

changes/4406-acmiyaguchi.md

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

changes/4424-commonism.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.0a1'
3+
VERSION = '1.10.0a2'
44

55
try:
66
import cython # type: ignore

0 commit comments

Comments
 (0)