Skip to content

Commit 542017a

Browse files
committed
Bump version and update changelog
1 parent b2ef245 commit 542017a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

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

3+
## 7.3.1 (2020-03-22)
4+
5+
- Fix error when parsing empty list with subcast
6+
[#137](https://github.com/sloria/environs/issues/137).
7+
Thanks [sabdouni] for the catch and patch.
8+
39
## 7.3.0 (2020-03-01)
410

511
- `log_level` accepts lower-cased log level names and rejects invalid

environs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import marshmallow as ma
1616
from dotenv.main import load_dotenv, _walk_to_root
1717

18-
__version__ = "7.3.0"
18+
__version__ = "7.3.1"
1919
__all__ = ["EnvError", "Env"]
2020

2121
MARSHMALLOW_VERSION_INFO = tuple(int(part) for part in ma.__version__.split(".") if part.isdigit())

0 commit comments

Comments
 (0)