summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Allgaier <mail@spacegaier.de>2020-12-06 23:50:58 +0100
committerPhilip Allgaier <mail@spacegaier.de>2020-12-06 23:50:58 +0100
commit5419cff1fae104690d553dec967ce99c546473bd (patch)
tree57b60f62149833536c15d572291eb1380616cbf3
parentc82e5d575ba7b71be8407bdcccec0c6cf4b15e0f (diff)
downloadvoluptuous-5419cff1fae104690d553dec967ce99c546473bd.tar.gz
Release 0.12.10.12.1
-rw-r--r--CHANGELOG.md19
-rw-r--r--voluptuous/__init__.py2
2 files changed, 19 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 30b5f87..8206260 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## [0.12.1]
+
+**Changes**:
+- [#435](https://github.com/alecthomas/voluptuous/pull/435): Extended a few tests (`Required` and `In`)
+- [#425](https://github.com/alecthomas/voluptuous/pull/425): Improve error message for `In` and `NotIn`
+- [#436](https://github.com/alecthomas/voluptuous/pull/436): Add sorted() for `In` and `NotIn` + fix tests
+- [#437](https://github.com/alecthomas/voluptuous/pull/437): Grouped `Maybe` tests plus added another `Range` test
+- [#438](https://github.com/alecthomas/voluptuous/pull/438): Extend tests for `Schema` with empty list or dict
+
+**New**:
+- [#433](https://github.com/alecthomas/voluptuous/pull/433): Add Python 3.9 support
+
+**Fixes**:
+- [#431](https://github.com/alecthomas/voluptuous/pull/431): Fixed typos + made spelling more consistent
+- [#411](https://github.com/alecthomas/voluptuous/pull/411): Ensure `Maybe` propagates error information
+- [#434](https://github.com/alecthomas/voluptuous/pull/434): Remove value enumeration when validating empty list
+
## [0.12.0]
**Changes**:
@@ -157,4 +174,4 @@ translation to python 2 issue fixed.
## 0.9.3 (2016-08-03)
-Changelog not kept for 0.9.3 and earlier releases.
+Changelog not kept for 0.9.3 and earlier releases. \ No newline at end of file
diff --git a/voluptuous/__init__.py b/voluptuous/__init__.py
index fef1001..4d09fe6 100644
--- a/voluptuous/__init__.py
+++ b/voluptuous/__init__.py
@@ -5,5 +5,5 @@ from voluptuous.validators import *
from voluptuous.util import *
from voluptuous.error import *
-__version__ = '0.11.7'
+__version__ = '0.12.1'
__author__ = 'alecthomas'