A lot of last-minute fixes, version 0.1.1

This commit is contained in:
Markus Unterwaditzer 2014-03-31 15:21:51 +02:00
parent 7dfeca7f10
commit 8e094680e6
3 changed files with 9 additions and 3 deletions

View file

@ -17,7 +17,7 @@ It aims to be for CalDAV and CardDAV what
`OfflineIMAP <http://offlineimap.org/>`_ is for IMAP. `OfflineIMAP <http://offlineimap.org/>`_ is for IMAP.
CardDAV/CalDAV Server Support CardDAV/CalDAV Server Support
===================== =============================
vdirsyncer is currently tested against the latest versions Radicale and vdirsyncer is currently tested against the latest versions Radicale and
ownCloud. While Radicale seems to work perfectly, ownCloud currently has ownCloud. While Radicale seems to work perfectly, ownCloud currently has
@ -51,3 +51,8 @@ How to run the tests
sh install-deps.sh sh install-deps.sh
py.test tests/ py.test tests/
License
=======
vdirsyncer is released under the MIT License, see ``LICENSE`` for more details.

View file

@ -14,11 +14,12 @@ from setuptools import setup, find_packages
setup( setup(
name='vdirsyncer', name='vdirsyncer',
version='0.1.0', version='0.1.1',
author='Markus Unterwaditzer', author='Markus Unterwaditzer',
author_email='markus@unterwaditzer.net', author_email='markus@unterwaditzer.net',
url='https://github.com/untitaker/vdirsyncer', url='https://github.com/untitaker/vdirsyncer',
description='A syncronization tool for vdir', description='A syncronization tool for vdir',
license='MIT',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
packages=find_packages(exclude=['tests']), packages=find_packages(exclude=['tests']),
include_package_data=True, include_package_data=True,

View file

@ -9,4 +9,4 @@
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
''' '''
__version__ = '0.1.0' __version__ = '0.1.1'