Skip to content

Commit

Permalink
uprev
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Jan 24, 2020
1 parent c5dd9c1 commit e4cd9d2
Show file tree
Hide file tree
Showing 17 changed files with 21 additions and 18 deletions.
20 changes: 20 additions & 0 deletions HISTORY.md
@@ -1,3 +1,23 @@
## v1.4 (2020-01-24)

* **Breaking Change:** alias precedence logic changed so aliases on a field always take priority over
an alias from `alias_generator` to avoid buggy/unexpected behaviour,
see [here](https://pydantic-docs.helpmanual.io/usage/model_config/#alias-precedence) for details, #1178 by @samuelcolvin
* Add support for unicode and punycode in TLDs, #1182 by @jamescurtin
* Fix `cls` argument in validators during assignment, #1172 by @samuelcolvin
* completing Luhn algorithm for `PaymentCardNumber`, #1166 by @cuencandres
* add support for generics that implement `__get_validators__` like a custom data type, #1159 by @tiangolo
* add support for infinite generators with `Iterable`, #1152 by @tiangolo
* fix `url_regex` to accept schemas with `+`, `-` and `.` after the first character, #1142 by @samuelcolvin
* move `version_info()` to `version.py`, suggest its use in issues, #1138 by @samuelcolvin
* Improve pydantic import time by roughly 50% by deferring some module loading and regex compilation, #1127 by @samuelcolvin
* Fix `EmailStr` and `NameEmail` to accept instances of themselves in cython, #1126 by @koxudaxi
* Pass model class to the `Config.schema_extra` callable, #1125 by @therefromhere
* Fix regex for username and password in URLs, #1115 by @samuelcolvin
* Add support for nested generic models, #1104 by @dmontagu
* add `__all__` to `__init__.py` to prevent "implicit reexport" errors from mypy, #1072 by @samuelcolvin
* Add support for using "dotenv" files with `BaseSettings`, #1011 by @acnebs

## v1.3 (2019-12-21)

* Change `schema` and `schema_model` to handle dataclasses by using their `__pydantic_model__` feature, #792 by @aviramha
Expand Down
1 change: 0 additions & 1 deletion changes/1011-acnebs.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1072-samuelcolvin.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1104-dmontagu.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1115-samuelcolvin.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1125-therefromhere.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1126-koxudaxi.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1127-samuelcolvin.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1138-samuelcolvin.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1142-samuelcolvin.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1152-tiangolo.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1159-tiangolo.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1166-cuencandres.rst

This file was deleted.

1 change: 0 additions & 1 deletion changes/1172-samuelcolvin.md

This file was deleted.

3 changes: 0 additions & 3 deletions changes/1178-samuelcolvin.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1182-jamescurtin.md

This file was deleted.

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

VERSION = '1.4a1'
VERSION = '1.4'


def version_info() -> str:
Expand Down

0 comments on commit e4cd9d2

Please sign in to comment.