From 8e094680e63d000499d169c58dbc7b1646bf40ec Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 31 Mar 2014 15:21:51 +0200 Subject: [PATCH] A lot of last-minute fixes, version 0.1.1 --- README.rst | 7 ++++++- setup.py | 3 ++- vdirsyncer/__init__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 26731e7..f315da5 100644 --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ It aims to be for CalDAV and CardDAV what `OfflineIMAP `_ is for IMAP. CardDAV/CalDAV Server Support -===================== +============================= vdirsyncer is currently tested against the latest versions Radicale and ownCloud. While Radicale seems to work perfectly, ownCloud currently has @@ -51,3 +51,8 @@ How to run the tests sh install-deps.sh py.test tests/ + +License +======= + +vdirsyncer is released under the MIT License, see ``LICENSE`` for more details. diff --git a/setup.py b/setup.py index 838ba49..389c4d9 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,12 @@ from setuptools import setup, find_packages setup( name='vdirsyncer', - version='0.1.0', + version='0.1.1', author='Markus Unterwaditzer', author_email='markus@unterwaditzer.net', url='https://github.com/untitaker/vdirsyncer', description='A syncronization tool for vdir', + license='MIT', long_description=open('README.rst').read(), packages=find_packages(exclude=['tests']), include_package_data=True, diff --git a/vdirsyncer/__init__.py b/vdirsyncer/__init__.py index 71d182f..49bcf31 100644 --- a/vdirsyncer/__init__.py +++ b/vdirsyncer/__init__.py @@ -9,4 +9,4 @@ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. ''' -__version__ = '0.1.0' +__version__ = '0.1.1'