From 7135367640c1f5de4fe6c34f517b19c7cf7c7895 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Mon, 12 Jan 2015 18:40:42 +0100 Subject: [PATCH] Version 0.10 --- NEWS.rst | 5 +++-- radicale/__init__.py | 2 +- setup.py | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 8e22b52..c23273c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -3,14 +3,15 @@ ====== -0.10 - *Not released yet* -========================= +0.10 - Lovely Endless Grass +=========================== * Support well-known URLs (by Mathieu Dupuy) * Fix collection discovery (by Markus Unterwaditzer) * Reload logger config on SIGHUP (by Élie Bouttier) * Remove props files when deleting a collection (by Vincent Untz) * Support salted SHA1 passwords (by Marc Kleine-Budde) +* Don't spam the logs about non-SSL IMAP connections to localhost (by Giel van Schijndel) 0.9 - Rivers diff --git a/radicale/__init__.py b/radicale/__init__.py index 5cbe5a4..16d5f2a 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -51,7 +51,7 @@ except ImportError: from . import auth, config, ical, log, rights, storage, xmlutils -VERSION = "0.9" +VERSION = "0.10" # Standard "not allowed" response that is returned when an authenticated user # tries to access information they don't have rights to diff --git a/setup.py b/setup.py index 4d93ce1..562aae1 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,8 @@ setup( "Radicale-%s.tar.gz" % radicale.VERSION), license="GNU GPL v3", platforms="Any", - packages=["radicale", "radicale.auth", "radicale.storage", "radicale.rights"], + packages=[ + "radicale", "radicale.auth", "radicale.storage", "radicale.rights"], provides=["radicale"], scripts=["bin/radicale"], keywords=["calendar", "addressbook", "CalDAV", "CardDAV"],