diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6d696df..91ff338 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,24 @@ Package maintainers and users who have to manually update their installation may want to subscribe to `GitHub's tag feed `_. +Version 0.3.1 +============= + +*released on 24 November 2014* + +- Fixed a bug where vdirsyncer would delete items if they're deleted on side A + but modified on side B. Instead vdirsyncer will now upload the new items to + side A. See :gh:`128`. + +- Synchronization continues with the remaining pairs if one pair crashes, see + :gh:`121`. + +- The ``processes`` config key is gone. There is now a ``--max-workers`` option + on the CLI which has a similar purpose. See :ghpr:`126`. + +- The Read The Docs-theme is no longer required for building the docs. If it is + not installed, the default theme will be used. See :gh:`134`. + Version 0.3.0 ============= diff --git a/vdirsyncer/__init__.py b/vdirsyncer/__init__.py index e4dfd17..6590b01 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.0' +__version__ = '0.3.1' PROJECT_HOME = 'https://github.com/untitaker/vdirsyncer' DOCS_HOME = 'https://vdirsyncer.readthedocs.org/en/latest'