From 263f76f88e668e655654431067bc3e72461c56f2 Mon Sep 17 00:00:00 2001 From: Unrud Date: Tue, 1 Aug 2017 17:18:13 +0200 Subject: [PATCH] Bump version to 2.1.3 --- NEWS.md | 12 ++++++++++++ radicale/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 26e6e91d..417e53ae 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,18 @@ News ==== +2.1.3 - 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. + +* Enable timeout for SSL handshakes and move them out of the main thread +* Create cache entries during upload of items +* Stop built-in server on Windows when Ctrl+C is pressed +* Prevent slow down when multiple requests hit a collection during cache warm-up + 2.1.2 - Wild Radish ------------------- diff --git a/radicale/__init__.py b/radicale/__init__.py index b2304063..e2fa04ae 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.2" +VERSION = "2.1.3" NOT_ALLOWED = ( client.FORBIDDEN, (("Content-Type", "text/plain"),),