From d5d55d084c3d0c59daa1264dfb5023460e2fefe6 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 20 Sep 2014 14:37:50 +0200 Subject: [PATCH] Version 0.3.0 --- CHANGELOG.rst | 24 ++++++++++++++++++++++++ vdirsyncer/__init__.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d55284d..1c583fb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,30 @@ Changelog This changelog only contains information that might be useful to end users and package maintainers. For further info, see the git commit log. +Version 0.3.0 +============= + +*released on 20 September 2014* + +- Add ``verify_fingerprint`` parameter to + :py:class:`vdirsyncer.storage.HttpStorage`, + :py:class:`vdirsyncer.storage.CaldavStorage` and + :py:class:`vdirsyncer.storage.CarddavStorage`, + see issue `#99`_ and pull request `#106`_. + +- Add ``passwordeval`` parameter to :ref:`general_config`, see issue `#108`_ + and pull request `#117`_. + +- Emit warnings (instead of exceptions) about certain invalid responses from + the server, see issue `#113`_. This is apparently required for compatibility + with Davmail. + +.. _`#99`: https://github.com/untitaker/vdirsyncer/issues/99 +.. _`#106`: https://github.com/untitaker/vdirsyncer/pull/106 +.. _`#108`: https://github.com/untitaker/vdirsyncer/issues/108 +.. _`#113`: https://github.com/untitaker/vdirsyncer/issues/113 +.. _`#117`: https://github.com/untitaker/vdirsyncer/pull/117 + Version 0.2.5 ============= diff --git a/vdirsyncer/__init__.py b/vdirsyncer/__init__.py index 13acb6f..87a1d02 100644 --- a/vdirsyncer/__init__.py +++ b/vdirsyncer/__init__.py @@ -9,4 +9,4 @@ :copyright: (c) 2014 Markus Unterwaditzer & contributors :license: MIT, see LICENSE for more details. ''' -__version__ = '0.2.5' +__version__ = '0.3.0'