Skip to content

Commit

Permalink
Release 0.14.2 (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoni-szych-rtbhouse authored Feb 2, 2024
1 parent 28a799a commit 1fcf849
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.14.2]

**New**:
* [#507](https://github.com/alecthomas/voluptuous/pull/507): docs: document description field of Marker

**Fixes**:
* [#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)
* [#488](https://github.com/alecthomas/voluptuous/pull/488): fix(typing): fix type hint for Coerce type param (bug introduced in 0.14.0)
* [#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)

**Changes**:
* [#499](https://github.com/alecthomas/voluptuous/pull/499): support: drop support for python 3.7
* [#501](https://github.com/alecthomas/voluptuous/pull/501): support: run tests on python 3.11
* [#502](https://github.com/alecthomas/voluptuous/pull/502): support: run tests on python 3.12
* [#495](https://github.com/alecthomas/voluptuous/pull/495): refactor: drop duplicated type checks in Schema._compile
* [#500](https://github.com/alecthomas/voluptuous/pull/500): refactor: fix few tests, use pytest.raises, extend raises helper
* [#503](https://github.com/alecthomas/voluptuous/pull/503): refactor: Add linters configuration, reformat whole code

## [0.14.1]

**Changes**:
Expand Down
4 changes: 2 additions & 2 deletions voluptuous/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from voluptuous.util import *
from voluptuous.validators import *

from voluptuous.error import * # isort: skip
from voluptuous.error import * # isort: skip

# fmt: on

__version__ = '0.14.1'
__version__ = '0.14.2'
__author__ = 'alecthomas'
2 changes: 1 addition & 1 deletion voluptuous/schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ def __repr__(self):
class Marker(object):
"""Mark nodes for special treatment.
`description` is an optional field, unused by Voluptuous itself, but can be used
`description` is an optional field, unused by Voluptuous itself, but can be
introspected by any external tool, for example to generate schema documentation.
"""

Expand Down

0 comments on commit 1fcf849

Please sign in to comment.