From 2232c0e556bc68343388fa8499bdbf13196a7514 Mon Sep 17 00:00:00 2001 From: spacegaier Date: Sun, 23 Jun 2024 23:03:41 +0200 Subject: [PATCH] Release 0.15.0 --- CHANGELOG.md | 11 +++++++++++ voluptuous/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2a10bc..0e18189 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.15.0] + +**Fixes**: + +* [#512](https://github.com/alecthomas/voluptuous/pull/512): Add Any type to defaults +* [#513](https://github.com/alecthomas/voluptuous/pull/513): Only calculate hash once for Marker objects + +**Changes**: + +* [#514](https://github.com/alecthomas/voluptuous/pull/514): Remove python 3.8 support + ## [0.14.2] **New**: diff --git a/voluptuous/__init__.py b/voluptuous/__init__.py index 3138aaf..f809521 100644 --- a/voluptuous/__init__.py +++ b/voluptuous/__init__.py @@ -8,5 +8,5 @@ # fmt: on -__version__ = '0.14.2' +__version__ = '0.15.0' __author__ = 'alecthomas'