From 8e7c519864525985753b2f99d4a92398a36b570f Mon Sep 17 00:00:00 2001 From: Christian Geier Date: Mon, 8 Sep 2014 23:13:50 +0200 Subject: [PATCH] release v0.3.1 --- CHANGELOG.rst | 5 ++++- doc/source/changelog.rst | 2 ++ doc/source/news.rst | 3 ++- doc/source/news/khal031.rst | 20 ++++++++++++++++++++ setup.py | 6 +++--- 5 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 doc/source/news/khal031.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4e8895de1..a580c57c3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,8 +5,11 @@ For more detailed information have a look at the git log. 0.3.1 ----- -not released yet +released on 2014-09-08 +* FIX: events deleted in the vdir are not shown anymore in khal. You might want + to delete your local database file, if you have deleted any events on the + server. * FIX: in some cases non-ascii characters were printed even if unicode_symbols is set to False in the config * FIX: events with different start and end timezones are now properly exported diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 09929fe43..08d4bd8ea 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -1 +1,3 @@ +.. _changelog: + .. include:: ../../CHANGELOG.rst diff --git a/doc/source/news.rst b/doc/source/news.rst index ff2c24db1..7e4d965c8 100644 --- a/doc/source/news.rst +++ b/doc/source/news.rst @@ -1,7 +1,7 @@ News ==== -Below is a list of new releases and other khal related news. Both is also +Below is a list of new releases and other khal related news. This is also available as an `rss feed `_ |rss|. .. |rss| image:: images/rss.png @@ -12,6 +12,7 @@ available as an `rss feed `_ |rss|. :title: khal news :link: http://lostpackets.de/khal/ + news/khal031 news/khal03 news/khal02 news/khal011 diff --git a/doc/source/news/khal031.rst b/doc/source/news/khal031.rst new file mode 100644 index 000000000..f2c27ea40 --- /dev/null +++ b/doc/source/news/khal031.rst @@ -0,0 +1,20 @@ +khal v0.3.1 released +==================== + +.. feed-entry:: + :date: 2014-09-08 + +A new release of khal is here: `khal v0.3.1`__ (also available on pypi_). + +__ https://lostpackets.de/khal/downloads/khal-0.3.1.tar.gz + + +This is a bugfix release, bringing no new features. The last release suffered +from a major bug, where events deleted on the server (and in the vdir) were not +deleted in khal's caching database and therefore still displayed in khal. +Therefore, after updating please delete your local database. + +For more information on other fixed bugs, see :ref:`changelog`. + + +.. _pypi: https://pypi.python.org/pypi/khal/ diff --git a/setup.py b/setup.py index 9f7b81c28..046e7f86b 100644 --- a/setup.py +++ b/setup.py @@ -9,10 +9,10 @@ from setuptools import setup MAJOR = 0 -MINOR = 4 -PATCH = 0 +MINOR = 3 +PATCH = 1 -RELEASE = False +RELEASE = True VERSION = "{0}.{1}.{2}".format(MAJOR, MINOR, PATCH)