From ee3fb71f7db7477e87bf0ab7a900dfbad2500d54 Mon Sep 17 00:00:00 2001 From: Unrud Date: Mon, 11 Sep 2017 19:32:34 +0200 Subject: [PATCH] Bump version to 2.1.6 --- NEWS.md | 14 ++++++++++++++ radicale/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 77c99c9..e6a234c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,20 @@ News ==== +2.1.6 - Wild Radish +------------------- + +This release is compatible with version 2.0.0. + +* Fix content-type of VLIST +* Specify correct COMPONENT in content-type of VCALENDAR +* Cache COMPONENT of calendar objects (improves speed with some clients) +* Stricter parsing of filters +* Improve support for CardDAV filter +* Fix some smaller bugs in CalDAV filter +* Add X-WR-CALNAME and X-WR-CALDESC to calendars downloaded via HTTP/WebDAV +* Use X-WR-CALNAME and X-WR-CALDESC from calendars published via WebDAV + 2.1.5 - Wild Radish ------------------- diff --git a/radicale/__init__.py b/radicale/__init__.py index 3b70c1b..94c6157 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -52,7 +52,7 @@ import vobject from . import auth, rights, storage, web, xmlutils -VERSION = "2.1.5" +VERSION = "2.1.6" NOT_ALLOWED = ( client.FORBIDDEN, (("Content-Type", "text/plain"),),