From d274044700ca085d2070017e45bdb0b4095bd4d4 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Tue, 20 Mar 2012 18:36:34 +0100 Subject: [PATCH] Version 0.7 --- NEWS.rst | 9 ++++----- TODO.rst | 1 + radicale/__init__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index fd2891a..93c9be0 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -3,15 +3,14 @@ ====== -1.0 - *not released yet* -======================== +0.7 - Eternal Sunshine +====================== * Repeating events -* Calendar deletion +* Collection deletion * Courier and PAM authentication methods -* Git and SQL storages * CardDAV support -* LDAP: custom filters supported +* Custom LDAP filters supported 0.6.4 - Tulips diff --git a/TODO.rst b/TODO.rst index d39b54e..1d57350 100644 --- a/TODO.rst +++ b/TODO.rst @@ -6,6 +6,7 @@ === * [IN PROGRESS] Other CalDAV clients supports +* SQL and Git storage backends * Tests diff --git a/radicale/__init__.py b/radicale/__init__.py index e2c201d..2ed1b1e 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -49,7 +49,7 @@ except ImportError: from radicale import acl, config, ical, log, storage, xmlutils -VERSION = "git" +VERSION = "0.7" class HTTPServer(wsgiref.simple_server.WSGIServer, object):