From 60d770737ac9288d32649372dd0d47865d34692b Mon Sep 17 00:00:00 2001 From: Daniel Andrlik Date: Tue, 16 Oct 2018 14:29:02 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.0=20=E2=86=92=200.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- HISTORY.rst | 6 ++++++ fiction_outlines/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f7da668..3bd26c2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = False diff --git a/HISTORY.rst b/HISTORY.rst index e969619..a67625e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- + +0.3.1 (2018-10-16) ++++++++++++++++++++++++++++ + +* Now compatible with both Python 3.7 and 3.6 + 0.3.0 (2018-08-08) +++++++++++++++++++++++++++ diff --git a/fiction_outlines/__init__.py b/fiction_outlines/__init__.py index 353a8fc..b846c54 100644 --- a/fiction_outlines/__init__.py +++ b/fiction_outlines/__init__.py @@ -2,5 +2,5 @@ fiction_outlines is a reusable Django app for managing manuscript outlines. ''' -__version__ = '0.3.0' +__version__ = '0.3.1' default_app_config = 'fiction_outlines.apps.FictionOutlinesConfig'