Guillaume Ayoub 11 лет назад
Родитель
Сommit
7135367640
3 измененных файлов с 6 добавлено и 4 удалено
  1. 3 2
      NEWS.rst
  2. 1 1
      radicale/__init__.py
  3. 2 1
      setup.py

+ 3 - 2
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

+ 1 - 1
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

+ 2 - 1
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"],