diff --git a/.travis.yml b/.travis.yml index 278906eb..35f34a63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ python: - "2.6" - "2.7" - "3.3" -# - "3.4" # Not available on Travis yet, see https://github.com/travis-ci/travis-ci/issues/1989 + - "3.4" install: - "pip install -e . --use-mirrors" - "pip install pycrypto>=2.6 --use-mirrors" diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eb1a0be..cb89a41a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Changelog ========= +### 1.8 (May 22, 2014) + +* __1.8.0__ Official support for python 3.4 + ### 1.7 (December 22, 2013) * __1.7.22__ Fixed an issue with writing files when exporting entries containing non-ascii characters. diff --git a/jrnl/__init__.py b/jrnl/__init__.py index 1e1dc0ec..91b75919 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.22' +__version__ = '1.8.0' __author__ = 'Manuel Ebert' __license__ = 'MIT License' __copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'