Changelog

This commit is contained in:
Manuel Ebert 2014-01-03 16:02:39 +01:00
parent 480eb4574b
commit 24147a25af
3 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ Changelog
### 1.7 (December 22, 2013) ### 1.7 (December 22, 2013)
* __1.7.4__ Gets rid of colorama. * __1.7.5__ Colorama is only needed on windows. Smaller fixes
* __1.7.3__ Touches temporary files before opening them to allow more external editors. * __1.7.3__ Touches temporary files before opening them to allow more external editors.
* __1.7.2__ Dateutil added to requirements. * __1.7.2__ Dateutil added to requirements.
* __1.7.1__ Fixes issues with parsing time information in entries. * __1.7.1__ Fixes issues with parsing time information in entries.

View file

@ -1,4 +1,4 @@
Copyright (c) 2013 Manuel Ebert Copyright (c) 2014 Manuel Ebert
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View file

@ -7,10 +7,10 @@ jrnl is a simple journal application for your command line.
""" """
__title__ = 'jrnl' __title__ = 'jrnl'
__version__ = '1.7.4' __version__ = '1.7.5'
__author__ = 'Manuel Ebert' __author__ = 'Manuel Ebert'
__license__ = 'MIT License' __license__ = 'MIT License'
__copyright__ = 'Copyright 2013 Manuel Ebert' __copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'
from . import Journal from . import Journal
from . import cli from . import cli