diff --git a/CHANGELOG.md b/CHANGELOG.md index e9563f6a..6c3c430c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ Changelog ========= -### 1.4.1 +### 1.4.2 * [Fixed] Tagging works again +* Meta-info for PyPi updated ### 1.4.0 diff --git a/jrnl/__init__.py b/jrnl/__init__.py index e6c3253f..64f3178f 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.4.1' +__version__ = '1.4.2' __author__ = 'Manuel Ebert' __license__ = 'MIT License' __copyright__ = 'Copyright 2013 Manuel Ebert' diff --git a/setup.py b/setup.py index c6a53760..7f7e5d6c 100644 --- a/setup.py +++ b/setup.py @@ -92,14 +92,16 @@ setup( 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', 'Topic :: Office/Business :: News/Diary', 'Topic :: Text Processing' ], # metadata for upload to PyPI author = "Manuel Ebert", - author_email = "manuel@hey.com", + author_email = "manuel@1450.me", license = "MIT License", keywords = "journal todo todo.txt jrnl".split(), - url = "http://maebert.github.com/jrnl", + url = "http://maebert.github.io/jrnl", )