From 325e66ed67bfaee1ff06d401649b802537a6784e Mon Sep 17 00:00:00 2001 From: Logan Jones Date: Mon, 25 Jun 2018 21:26:02 -0400 Subject: [PATCH] Bumping version for deployment --- HISTORY.rst | 4 ++++ setup.py | 2 +- yapconf/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8f4f654..da09137 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,10 @@ History ======= +0.3.3 (2018-06-25) +------------------ +* Fixed an issue with dumping unicode in python 2 (#82) + 0.3.2 (2018-06-11) ------------------ * Fixed an issue with dumping box data to YAML (#78) diff --git a/setup.py b/setup.py index e837570..fe35622 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setup( name='yapconf', - version='0.3.2.post1', + version='0.3.3', description="Yet Another Python Configuration", long_description=readme + '\n\n' + history, author="Logan Asher Jones", diff --git a/yapconf/__init__.py b/yapconf/__init__.py index 19854a4..a7d7e4d 100644 --- a/yapconf/__init__.py +++ b/yapconf/__init__.py @@ -51,7 +51,7 @@ __author__ = """Logan Asher Jones""" __email__ = 'loganasherjones@gmail.com' -__version__ = '0.3.2.post1' +__version__ = '0.3.3' FILE_TYPES = {'json', }