Skip to content

Commit

Permalink
release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
geier committed Sep 8, 2014
1 parent 4b8706e commit 8e7c519
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.. _changelog:

.. include:: ../../CHANGELOG.rst
3 changes: 2 additions & 1 deletion doc/source/news.rst
Original file line number Diff line number Diff line change
@@ -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 <https://lostpackets.de/khal/index.rss>`_ |rss|.

.. |rss| image:: images/rss.png
Expand All @@ -12,6 +12,7 @@ available as an `rss feed <https://lostpackets.de/khal/index.rss>`_ |rss|.
:title: khal news
:link: http://lostpackets.de/khal/

news/khal031
news/khal03
news/khal02
news/khal011
Expand Down
20 changes: 20 additions & 0 deletions doc/source/news/khal031.rst
Original file line number Diff line number Diff line change
@@ -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/
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 8e7c519

Please sign in to comment.