From c891a7bb7a629b809189e3cdd0798ecd26968d8b Mon Sep 17 00:00:00 2001 From: spacegaier Date: Sun, 12 Nov 2023 18:00:13 +0100 Subject: [PATCH] Release 0.14.0 --- CHANGELOG.md | 17 +++++++++++++++++ voluptuous/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f550b7..67e248f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.14.0] + +**Fixes**: +* [#470](https://github.com/alecthomas/voluptuous/pull/470): Fix a few code comment typos +* [#472](https://github.com/alecthomas/voluptuous/pull/472): Change to SPDX conform license string + + +**New**: +* [#475](https://github.com/alecthomas/voluptuous/pull/475): Add typing information +* [#478](https://github.com/alecthomas/voluptuous/pull/478): Fix new type hint of schemas, for example for `Required('key')` +* [#486](https://github.com/alecthomas/voluptuous/pull/486): Fix new type hints and enable `mypy` +* [#479](https://github.com/alecthomas/voluptuous/pull/479): Allow error reporting on keys + +**Changes**: +* [#476](https://github.com/alecthomas/voluptuous/pull/476): Set static PyPI project description +* [#482](https://github.com/alecthomas/voluptuous/pull/482): Remove Travis build status badge + ## [0.13.1] **Fixes**: diff --git a/voluptuous/__init__.py b/voluptuous/__init__.py index de178d0..76170c4 100644 --- a/voluptuous/__init__.py +++ b/voluptuous/__init__.py @@ -5,5 +5,5 @@ from voluptuous.util import * from voluptuous.error import * -__version__ = '0.13.1' +__version__ = '0.14.0' __author__ = 'alecthomas'