mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Version bump to 0.3.0
This commit is contained in:
parent
9a9a80cd8e
commit
22b3da5f89
3 changed files with 11 additions and 11 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -1,30 +1,30 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
### 0.2.4 (May 24, 2012)
|
### 0.3.0 (May 24, 2012)
|
||||||
|
|
||||||
* [Fixed] Dates such as "May 3" will now be interpreted as being in the past if the current day is at least 28 days in the future
|
* [Fixed] Dates such as "May 3" will now be interpreted as being in the past if the current day is at least 28 days in the future
|
||||||
* [Fixed] Bug where composed entry is lost when the journal file fails to load
|
* [Fixed] Bug where composed entry is lost when the journal file fails to load
|
||||||
* [Changed] Changed directory structure and install scripts (removing the necessity to make an alias from `jrnl` to `jrnl.py`)
|
* Changed directory structure and install scripts (removing the necessity to make an alias from `jrnl` to `jrnl.py`)
|
||||||
|
|
||||||
### 0.2.4 (May 21, 2012)
|
#### 0.2.4 (May 21, 2012)
|
||||||
|
|
||||||
* [Fixed] Parsing of new lines in journal files and entries
|
* [Fixed] Parsing of new lines in journal files and entries
|
||||||
* [Improved] Adds support for encrypting and decrypting into new files
|
* [Improved] Adds support for encrypting and decrypting into new files
|
||||||
|
|
||||||
### 0.2.3 (May 3, 2012)
|
#### 0.2.3 (May 3, 2012)
|
||||||
|
|
||||||
* [Improved] Adds a `-short` option that will only display the titles of entries (or, when filtering by tags, the context of the tag)
|
* [Improved] Adds a `-short` option that will only display the titles of entries (or, when filtering by tags, the context of the tag)
|
||||||
* [Improved] Adds tag export
|
* [Improved] Adds tag export
|
||||||
* [Improved] Adds coloured highlight of tags (by default, highlights all tags - when filtering by tags, only highlights search tags)
|
* [Improved] Adds coloured highlight of tags (by default, highlights all tags - when filtering by tags, only highlights search tags)
|
||||||
* [Improved] `.jrnl_config` will get automatically updated when updating jrnl to a new version
|
* [Improved] `.jrnl_config` will get automatically updated when updating jrnl to a new version
|
||||||
|
|
||||||
### 0.2.2 (April 17, 2012)
|
#### 0.2.2 (April 17, 2012)
|
||||||
|
|
||||||
* [Improved] Adds --encrypt and --decrypt to encrypt / decrypt existing journal files
|
* [Improved] Adds --encrypt and --decrypt to encrypt / decrypt existing journal files
|
||||||
* [Improved] Adds markdown export (kudos to dedan)
|
* [Improved] Adds markdown export (kudos to dedan)
|
||||||
|
|
||||||
### 0.2.1 (April 17, 2012)
|
#### 0.2.1 (April 17, 2012)
|
||||||
|
|
||||||
* [Improved] Submitted to [PyPi](http://pypi.python.org/pypi/jrnl/0.2.1).
|
* [Improved] Submitted to [PyPi](http://pypi.python.org/pypi/jrnl/0.2.1).
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ Changelog
|
||||||
* [Improved] Encrypts using CBC
|
* [Improved] Encrypts using CBC
|
||||||
* [Fixed] `key` has been renamed to `password` in config to avoid confusion. (The key use to encrypt and decrypt a journal is the SHA256-hash of the password.)
|
* [Fixed] `key` has been renamed to `password` in config to avoid confusion. (The key use to encrypt and decrypt a journal is the SHA256-hash of the password.)
|
||||||
|
|
||||||
### 0.1.1 (April 15, 2012)
|
#### 0.1.1 (April 15, 2012)
|
||||||
|
|
||||||
* [Fixed] Removed unnecessary print commands
|
* [Fixed] Removed unnecessary print commands
|
||||||
* [Improved] Created the documentation
|
* [Improved] Created the documentation
|
||||||
|
@ -43,11 +43,11 @@ Changelog
|
||||||
* [Improved] Supports encrypted journals using AES encryption
|
* [Improved] Supports encrypted journals using AES encryption
|
||||||
* [Improved] Support external editors for composing entries
|
* [Improved] Support external editors for composing entries
|
||||||
|
|
||||||
### 0.0.2 (April 5, 2012)
|
#### 0.0.2 (April 5, 2012)
|
||||||
|
|
||||||
* [Improved] Filtering by tags and dates
|
* [Improved] Filtering by tags and dates
|
||||||
* [Fixed] Now using dedicated classes for Journals and entries
|
* [Fixed] Now using dedicated classes for Journals and entries
|
||||||
|
|
||||||
### 0.0.1 (March 29, 2012)
|
#### 0.0.1 (March 29, 2012)
|
||||||
|
|
||||||
* Composing entries works. That's pretty much it.
|
* Composing entries works. That's pretty much it.
|
||||||
|
|
|
@ -19,7 +19,7 @@ except ImportError: import json
|
||||||
|
|
||||||
|
|
||||||
__title__ = 'jrnl'
|
__title__ = 'jrnl'
|
||||||
__version__ = '0.2.5'
|
__version__ = '0.3.0'
|
||||||
__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.2.5",
|
version = "0.3.0",
|
||||||
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