diff --git a/CHANGELOG.md b/CHANGELOG.md index f7d38c30..7f9260a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Changelog ### 1.7 (December 22, 2013) +* __1.7.14__ Fix for trailing whitespaces (eg. when writing markdown code block) * __1.7.13__ Fix for UTF-8 in DayOne journals * __1.7.12__ Fixes a bug where filtering by tags didn't work for DayOne journals * __1.7.11__ `-ls` will list all available journals (Thanks @jtan189) diff --git a/jrnl/__init__.py b/jrnl/__init__.py index aba1837f..82ff0f1d 100644 --- a/jrnl/__init__.py +++ b/jrnl/__init__.py @@ -8,7 +8,7 @@ jrnl is a simple journal application for your command line. from __future__ import absolute_import __title__ = 'jrnl' -__version__ = '1.7.13' +__version__ = '1.7.14' __author__ = 'Manuel Ebert' __license__ = 'MIT License' __copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'