diff --git a/.travis.yml b/.travis.yml index 58acbc98..ee0fce26 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ python: - "3.3" install: - "pip install -q -r requirements.txt --use-mirrors" - - "pip install -q behave python-dateutil" # command to run tests script: - python --version diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b2fff7c..963f141a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Changelog ### 1.7 (December 22, 2013) +* __1.7.2__ Dateutil added to requirements. * __1.7.1__ Fixes issues with parsing time information in entries. * __1.7.0__ Edit encrypted or DayOne journals with `jrnl --edit`. diff --git a/Makefile b/Makefile index 2805ff26..eadc6ab9 100644 --- a/Makefile +++ b/Makefile @@ -17,3 +17,8 @@ gh_pages: # Upload to pipy dist: python setup.py publish + +clean: + rm -rf dist + rm -rf _static + rm -rf jrnl.egg-info diff --git a/jrnl/__init__.py b/jrnl/__init__.py index c167789a..001bf160 100644 --- a/jrnl/__init__.py +++ b/jrnl/__init__.py @@ -7,7 +7,7 @@ jrnl is a simple journal application for your command line. """ __title__ = 'jrnl' -__version__ = '1.7.1' +__version__ = '1.7.2' __author__ = 'Manuel Ebert' __license__ = 'MIT License' __copyright__ = 'Copyright 2013 Manuel Ebert' diff --git a/requirements.txt b/requirements.txt index 64c1ed0e..c217b127 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,3 +6,4 @@ argparse==1.2.1 tzlocal == 1.0 slugify==0.0.1 keyring==3.0.5 +python-dateutil==2.2