diff --git a/NEWS.md b/NEWS.md index fa47e466b..26e6e91dc 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,19 @@ News ==== +2.1.2 - Wild Radish +------------------- + +This feature is not compatible with the 1.x.x versions. See +http://radicale.org/1to2/ if you want to switch from 1.x.x to +2.x.x. + +* Remove workarounds for bugs in VObject < 0.9.5 +* Error checking of collection tags and associated components +* Improve error checking of uploaded collections and components +* Don't delete empty collection properties implicitly +* Improve logging of VObject serialization + 2.1.1 - Wild Radish Again ------------------- diff --git a/radicale/__init__.py b/radicale/__init__.py index 95d43522e..bed7131a2 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -52,7 +52,7 @@ from . import auth, rights, storage, web, xmlutils -VERSION = "2.1.1" +VERSION = "2.1.2" NOT_ALLOWED = ( client.FORBIDDEN, (("Content-Type", "text/plain"),),