summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-11-22 21:47:44 +0200
committerLars Wirzenius <liw@liw.fi>2014-11-22 21:47:44 +0200
commitdcb4fadf3ab4bd4e72ae3cf002cdaed11ef178c9 (patch)
treedfbe81f114ac1bcf12e45a2719902637ab065b86
parent5beafac6b85acdb4c761d280fa58eb9fb0b36ab4 (diff)
downloadjt-dcb4fadf3ab4bd4e72ae3cf002cdaed11ef178c9.tar.gz
Prepare release version 0.3jt-0.3
-rw-r--r--NEWS16
-rw-r--r--debian/changelog6
-rwxr-xr-xjt2
-rw-r--r--setup.py2
4 files changed, 24 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 821d9e1..aaeaf0c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,22 @@
NEWS for jt
===========
+Version 0.3, released 2014-11-22
+--------------------------------
+
+* New person pages use `link(.)` instead of hardcoding the path to the
+ page.
+* There is now a rudimentary acceptance test suite for some of the
+ functionality of the program.
+* There is a new command, `jt new-topic FOO`, which creates a topic page.
+ The `jt new` command now accepts a `--topic=FOO` option to
+ automatically add a link to a topic page when creating a new journal
+ note.
+* The `--layout` option has been dropped, breaking compatibility with
+ some users at Codethink. Sorry. This can be added back, given
+ patches (incl. to test suite), but it was easier to drop it when
+ refactoring, given how lazy I am.
+
Version 0.2, released 2014-11-07
-----------------------------
diff --git a/debian/changelog b/debian/changelog
index e047bda..6e1d784 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+jt (0.3-1) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 22 Nov 2014 21:43:00 +0200
+
jt (0.2-1) unstable; urgency=low
* New upstream version.
diff --git a/jt b/jt
index 22f05a6..48bbaf6 100755
--- a/jt
+++ b/jt
@@ -28,7 +28,7 @@ import time
import traceback
-__version__ = '0.2'
+__version__ = '0.3'
template = '''\
diff --git a/setup.py b/setup.py
index cad6c53..ef8b843 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
from distutils.core import setup
setup(name='jt',
- version='0.2',
+ version='0.3',
description='personal journalling tool',
author='Lars Wirzenius',
author_email='liw@liw.fi',