Official support for python 3.4

This commit is contained in:
Manuel Ebert 2014-05-22 11:56:28 -07:00
parent 0961aa7610
commit 78eda12287
3 changed files with 6 additions and 2 deletions

View file

@ -3,7 +3,7 @@ python:
- "2.6" - "2.6"
- "2.7" - "2.7"
- "3.3" - "3.3"
# - "3.4" # Not available on Travis yet, see https://github.com/travis-ci/travis-ci/issues/1989 - "3.4"
install: install:
- "pip install -e . --use-mirrors" - "pip install -e . --use-mirrors"
- "pip install pycrypto>=2.6 --use-mirrors" - "pip install pycrypto>=2.6 --use-mirrors"

View file

@ -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 (December 22, 2013)
* __1.7.22__ Fixed an issue with writing files when exporting entries containing non-ascii characters. * __1.7.22__ Fixed an issue with writing files when exporting entries containing non-ascii characters.

View file

@ -8,7 +8,7 @@ jrnl is a simple journal application for your command line.
from __future__ import absolute_import from __future__ import absolute_import
__title__ = 'jrnl' __title__ = 'jrnl'
__version__ = '1.7.22' __version__ = '1.8.0'
__author__ = 'Manuel Ebert' __author__ = 'Manuel Ebert'
__license__ = 'MIT License' __license__ = 'MIT License'
__copyright__ = 'Copyright 2013 - 2014 Manuel Ebert' __copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'