Skip to content

Commit

Permalink
prepare for v1.9.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Dec 24, 2021
1 parent e882277 commit 5d6f48c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
6 changes: 0 additions & 6 deletions .codecov.yml

This file was deleted.

13 changes: 12 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v1.9.0a2 (2021-12-24)

* support generic models with discriminated union, #3551 by @PrettyWood
* keep old behaviour of `json()` by default, #3542 by @PrettyWood
* Removed typing-only `__root__` attribute from `BaseModel`, #3540 by @layday
* Build Python 3.10 wheels, #3539 by @mbachry
* Fix display of `extra` fields with model `__repr__`, #3234 by @cocolman
* models copied via `Config.copy_on_model_validation` always have all fields, #3201 by @PrettyWood
* nested ORM from nested dictionaries, #3182 by @PrettyWood
* fix link to discriminated union section by @PrettyWood

## v1.9.0a1 (2021-12-18)

Thank you to pydantic's sponsors:
Expand All @@ -15,6 +26,7 @@ for their kind support.
* Complex types can be set via [nested environment variables](https://pydantic-docs.helpmanual.io/usage/settings/#parsing-environment-variable-values), e.g. `foo___bar`, #3159 by @Air-Mark
* add a dark mode to _pydantic_ documentation, #2913 by @gbdlin
* Add support for autocomplete in VS Code via `__dataclass_transform__`, #2721 by @tiangolo
* Add "exclude" as a field parameter so that it can be configured using model config, #660 by @daviskirk

### Changes

Expand Down Expand Up @@ -102,7 +114,6 @@ for their kind support.
* stop calling parent class `root_validator` if overridden, #1895 by @PrettyWood
* Add `repr` (defaults to `True`) parameter to `Field`, to hide it from the default representation of the `BaseModel`, #1831 by @fnep
* Accept empty query/fragment URL parts, #1807 by @xavier
* Add "exclude" as a field parameter so that it can be configured using model config instead of purely at `.dict` / `.json` export time, #660 by @daviskirk

## v1.8.2 (2021-05-11)

Expand Down
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ benchmark-json:
.PHONY: clean
clean:
rm -rf `find . -name __pycache__`
rm -f `find . -type f -name '*.py[co]' `
rm -f `find . -type f -name '*~' `
rm -f `find . -type f -name '.*~' `
rm -f `find . -type f -name '*.py[co]'`
rm -f `find . -type f -name '*~'`
rm -f `find . -type f -name '.*~'`
rm -rf .cache
rm -rf .pytest_cache
rm -rf .mypy_cache
Expand All @@ -118,7 +118,6 @@ clean:
rm -rf docs/_build
rm -rf docs/.changelog.md docs/.version.md docs/.tmp_schema_mappings.html
rm -rf fastapi/test.db
rm -rf codecov.sh
rm -rf coverage.xml

.PHONY: docs
Expand Down
1 change: 0 additions & 1 deletion changes/3234-cocolman.md

This file was deleted.

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

VERSION = '1.9.0a1'
VERSION = '1.9.0a2'


def version_info() -> str:
Expand Down

0 comments on commit 5d6f48c

Please # to comment.