From a16b2cdfd749d86670f0334d820a978ae5c4b928 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 15 Feb 2016 00:25:15 -0500 Subject: [PATCH] v0.4.1 --- HISTORY.rst | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9088310..8154ecd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,8 @@ +v0.4.1 (02-15-2016) +=================== + +- Bugfix for Python 3. + v0.4.0 (02-13-2016) =================== diff --git a/setup.py b/setup.py index 782be20..4fabd43 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ if sys.argv[-1] == 'publish': sys.exit() requires = ['SQLAlchemy', 'tablib', 'docopt'] -version = '0.4.0' +version = '0.4.1' def read(f): return open(f, encoding='utf-8').read()