From f96c4dc59f9544fef72c2a30b07281ddf8e14676 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Thu, 23 Apr 2020 13:43:34 +0100 Subject: [PATCH] uprev --- HISTORY.md | 5 +++++ changes/1412-prettywood.md | 1 - changes/1418-prettywood.md | 1 - pydantic/version.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 changes/1412-prettywood.md delete mode 100644 changes/1418-prettywood.md diff --git a/HISTORY.md b/HISTORY.md index 002f7a05ad..14d9650f95 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +## v1.5.1 (2020-04-23) + +* Signature generation with `extra: allow` never uses a field name, #1418 by @prettywood +* Avoid mutating `Field` default value, #1412 by @prettywood + ## v1.5 (2020-04-18) * Make includes/excludes arguments for `.dict()`, `._iter()`, ..., immutable, #1404 by @AlexECX diff --git a/changes/1412-prettywood.md b/changes/1412-prettywood.md deleted file mode 100644 index acdb39a0ea..0000000000 --- a/changes/1412-prettywood.md +++ /dev/null @@ -1 +0,0 @@ -Avoid mutating `Field` default value diff --git a/changes/1418-prettywood.md b/changes/1418-prettywood.md deleted file mode 100644 index f10b1ffc3e..0000000000 --- a/changes/1418-prettywood.md +++ /dev/null @@ -1 +0,0 @@ -Signature generation with `extra: allow` never uses a field name diff --git a/pydantic/version.py b/pydantic/version.py index 0c4c114708..cfc5094c77 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -1,6 +1,6 @@ __all__ = 'VERSION', 'version_info' -VERSION = '1.5' +VERSION = '1.5.1' def version_info() -> str: