From 43ff90da9af13a85c36b3d6f4bdfb9bcd5c72acb Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 11 Dec 2014 19:04:28 +0100 Subject: [PATCH] Version 0.3.3 --- CHANGELOG.rst | 20 ++++++++++++++++++++ vdirsyncer/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d7fda2f..282e443 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,9 +9,29 @@ Package maintainers and users who have to manually update their installation may want to subscribe to `GitHub's tag feed `_. +Version 0.3.3 +============= + +*released on 8 December 2014* + +- Vdirsyncer now also works with iCloud. Particularly collection discovery and + etag handling were fixed. +- Vdirsyncer now encodes Cal- and CardDAV requests differently. This hasn't + been well-tested with servers like Zimbra or SoGo, but isn't expected to + cause any problems. +- Vdirsyncer is now more robust regarding invalid responses from CalDAV + servers. This should help with future compatibility with Davmail/Outlook. +- Fix a bug when specifying ``item_types`` of + :py:class:`vdirsyncer.storage.CaldavStorage` in the deprecated config format. +- Fix a bug where vdirsyncer would ignore all but one character specified in + ``unsafe_href_chars`` of :py:class:`vdirsyncer.storage.CaldavStorage` and + :py:class:`vdirsyncer.storage.CarddavStorage`. + Version 0.3.2 ============= +*released on 3 December 2014* + - The current config format has been deprecated, and support for it will be removed in version 0.4.0. Vdirsyncer warns about this now. diff --git a/vdirsyncer/__init__.py b/vdirsyncer/__init__.py index a433765..efbf2db 100644 --- a/vdirsyncer/__init__.py +++ b/vdirsyncer/__init__.py @@ -9,7 +9,7 @@ :copyright: (c) 2014 Markus Unterwaditzer & contributors :license: MIT, see LICENSE for more details. ''' -__version__ = '0.3.2' +__version__ = '0.3.3' PROJECT_HOME = 'https://github.com/untitaker/vdirsyncer' DOCS_HOME = 'https://vdirsyncer.readthedocs.org/en/latest'