mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Version bump to 0.2.5
This commit is contained in:
parent
32b691f938
commit
e8f346242e
4 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
* Changed directory structure and install scripts (removing the necessity to make an alias from `jrnl` to `jrnl.py`)
|
||||||
|
|
||||||
### 0.2.4
|
### 0.2.4
|
||||||
|
|
||||||
* Fixes parsing of new lines in journal files and entries
|
* Fixes parsing of new lines in journal files and entries
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import Journal
|
from Journal import Journal
|
||||||
from jrnl import cli
|
from jrnl import cli
|
||||||
|
|
|
@ -19,7 +19,7 @@ except ImportError: import json
|
||||||
|
|
||||||
|
|
||||||
__title__ = 'jrnl'
|
__title__ = 'jrnl'
|
||||||
__version__ = '0.2.4'
|
__version__ = '0.2.5'
|
||||||
__author__ = 'Manuel Ebert, Stephan Gabler'
|
__author__ = 'Manuel Ebert, Stephan Gabler'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -53,7 +53,7 @@ base_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "jrnl",
|
name = "jrnl",
|
||||||
version = "0.3.0",
|
version = "0.2.5",
|
||||||
description = "A command line journal application that stores your journal in a plain text file",
|
description = "A command line journal application that stores your journal in a plain text file",
|
||||||
packages = ['jrnl'],
|
packages = ['jrnl'],
|
||||||
install_requires = ["parsedatetime", "simplejson"],
|
install_requires = ["parsedatetime", "simplejson"],
|
||||||
|
|
Loading…
Add table
Reference in a new issue