From 7e2406c77849abcec41efed690b11c1faf8d9195 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Sat, 15 Apr 2017 15:51:05 +0200 Subject: [PATCH] Version 2.0.0rc1 --- NEWS.rst | 26 ++++++++++++++++++++++++++ radicale/__init__.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 34ab8a6..baa9d83 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -3,6 +3,32 @@ ====== +2.0.0 - Little Big Radish +========================= + +This feature is not compatible with the 1.x.x versions. See +http://kozea.github.io/Radicale/1to2/ if you want to switch from 1.x.x to +2.0.0. + +* Support Python 3.3+ only, Python 2 is not supported anymore +* Keep only one simple filesystem-based storage system +* Remove built-in Git support +* Remove built-in authentication modules +* Keep the WSGI interface, use Python HTTP server by default +* Use a real iCal parser, rely on the "vobject" external module +* Add a solid calendar discovery +* Respect the difference between "files" and "folders", don't rely on slashes +* Remove the calendar creation with GET requests +* Be stateless +* Use a file locker +* Add threading +* Get atomic writes +* Support new filters +* Support read-only permissions +* Allow External plugins for authentication, rights management, storage and + version control + + 1.1.1 - Second Law of Nature ============================ diff --git a/radicale/__init__.py b/radicale/__init__.py index 0dbf74c..e6cd690 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -49,7 +49,7 @@ import vobject from . import auth, rights, storage, xmlutils -VERSION = "2.0.0rc0" +VERSION = "2.0.0rc1" NOT_ALLOWED = ( client.FORBIDDEN, (("Content-Type", "text/plain"),),