From 201e80142e3d2d34c0217a23e8466cbc403eac17 Mon Sep 17 00:00:00 2001 From: Manuel Ebert Date: Thu, 5 Jul 2012 12:47:48 +0200 Subject: [PATCH] Version bump to 0.3.2 --- CHANGELOG.md | 6 ++++++ jrnl/jrnl.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 101dbc11..a69cede4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Changelog ========= +### 0.3.2 (July 5, 2012) + +* [Improved] Converts `\n` to new lines (if using directly on a command line, make sure to wrap your entry with quotes). + +### 0.3.1 (June 16, 2012) + * [Improved] Supports deleting of last entry. * [Fixed] Fixes a bug where --encrypt or --decrypt without a target file would not work. * [Improved] Supports a config option for setting word wrap. diff --git a/jrnl/jrnl.py b/jrnl/jrnl.py index 8adb6267..8abf87f2 100755 --- a/jrnl/jrnl.py +++ b/jrnl/jrnl.py @@ -20,7 +20,7 @@ except ImportError: import json __title__ = 'jrnl' -__version__ = '0.3.0' +__version__ = '0.3.2' __author__ = 'Manuel Ebert, Stephan Gabler' __license__ = 'MIT'