Version 0.10

This commit is contained in:
Guillaume Ayoub 2015-01-12 18:40:42 +01:00
parent f2ccdcac78
commit 7135367640
3 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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"],