Skip to content

Commit 1fcf849

Browse files
Release 0.14.2 (#508)
1 parent 28a799a commit 1fcf849

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.14.2]
4+
5+
**New**:
6+
* [#507](https://github.com/alecthomas/voluptuous/pull/507): docs: document description field of Marker
7+
8+
**Fixes**:
9+
* [#506](https://github.com/alecthomas/voluptuous/pull/506): fix: allow unsortable containers in In and NotIn validators (fixes [#451](https://github.com/alecthomas/voluptuous/issues/451)) (bug introduced in 0.12.1)
10+
* [#488](https://github.com/alecthomas/voluptuous/pull/488): fix(typing): fix type hint for Coerce type param (bug introduced in 0.14.0)
11+
* [#497](https://github.com/alecthomas/voluptuous/pull/497): fix(typing): allow path to be a list of strings, integers or any other hashables (bug introduced in 0.14.0)
12+
13+
**Changes**:
14+
* [#499](https://github.com/alecthomas/voluptuous/pull/499): support: drop support for python 3.7
15+
* [#501](https://github.com/alecthomas/voluptuous/pull/501): support: run tests on python 3.11
16+
* [#502](https://github.com/alecthomas/voluptuous/pull/502): support: run tests on python 3.12
17+
* [#495](https://github.com/alecthomas/voluptuous/pull/495): refactor: drop duplicated type checks in Schema._compile
18+
* [#500](https://github.com/alecthomas/voluptuous/pull/500): refactor: fix few tests, use pytest.raises, extend raises helper
19+
* [#503](https://github.com/alecthomas/voluptuous/pull/503): refactor: Add linters configuration, reformat whole code
20+
321
## [0.14.1]
422

523
**Changes**:

voluptuous/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
from voluptuous.util import *
55
from voluptuous.validators import *
66

7-
from voluptuous.error import * # isort: skip
7+
from voluptuous.error import * # isort: skip
88

99
# fmt: on
1010

11-
__version__ = '0.14.1'
11+
__version__ = '0.14.2'
1212
__author__ = 'alecthomas'

voluptuous/schema_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ def __repr__(self):
10221022
class Marker(object):
10231023
"""Mark nodes for special treatment.
10241024
1025-
`description` is an optional field, unused by Voluptuous itself, but can be used
1025+
`description` is an optional field, unused by Voluptuous itself, but can be
10261026
introspected by any external tool, for example to generate schema documentation.
10271027
"""
10281028

0 commit comments

Comments
 (0)