Skip to content

Commit 2466ee2

Browse files
authored
Release 0.13.1 (#469)
1 parent 51751ca commit 2466ee2

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,30 @@
11
# Changelog
22

3+
## [0.13.1]
4+
5+
**Fixes**:
6+
7+
- [#439](https://github.com/alecthomas/voluptuous/pull/454): Ignore `Enum` if it is unavailable
8+
- [#456](https://github.com/alecthomas/voluptuous/pull/456): Fix email regex match for Python 2.7
9+
10+
**New**:
11+
12+
- [#457](https://github.com/alecthomas/voluptuous/pull/457): Enable github actions
13+
- [#462](https://github.com/alecthomas/voluptuous/pull/462): Convert codebase to adhere to `flake8` W504 (PEP 8)
14+
- [#459](https://github.com/alecthomas/voluptuous/pull/459): Enable `flake8` in github actions
15+
- [#464](https://github.com/alecthomas/voluptuous/pull/464): `pytest` migration + enable Python 3.10
16+
317
## [0.13.0]
418

519
**Changes**:
620

7-
- [#450](https://github.com/alecthomas/voluptuous/pull/450): Display valid Enum values in Coerce
21+
- [#450](https://github.com/alecthomas/voluptuous/pull/450): Display valid `Enum` values in `Coerce`
822

923
## [0.12.2]
1024

1125
**Fixes**:
12-
- [#439](https://github.com/alecthomas/voluptuous/issues/439): Revert Breaking Maybe change in 0.12.1
26+
27+
- [#439](https://github.com/alecthomas/voluptuous/issues/439): Revert Breaking `Maybe` change in 0.12.1
1328
- [#447](https://github.com/alecthomas/voluptuous/issues/447): Fix Email Regex to not match on extra characters
1429

1530
## [0.12.1]

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,6 @@
3636
'Programming Language :: Python :: 3.7',
3737
'Programming Language :: Python :: 3.8',
3838
'Programming Language :: Python :: 3.9',
39+
'Programming Language :: Python :: 3.10',
3940
]
4041
)

voluptuous/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
from voluptuous.util import *
66
from voluptuous.error import *
77

8-
__version__ = '0.13.0'
8+
__version__ = '0.13.1'
99
__author__ = 'alecthomas'

0 commit comments

Comments
 (0)