docs and changelog

This commit is contained in:
Markus Unterwaditzer 2014-12-31 14:22:52 +01:00
parent fcf901e620
commit 67ff41e820
4 changed files with 3 additions and 4 deletions

View file

@ -14,6 +14,9 @@ Version 0.4.1
*yet to be released*
- All ``create`` arguments from all storages are gone. Vdirsyncer now asks if
it should try to create collections.
Version 0.4.0
=============

View file

@ -39,8 +39,6 @@ collections = ["from b"]
type = filesystem
path = ~/.contacts/
fileext = .vcf
# Create the directory if it doesn't exist: `true` or `false`
#create = true
[storage bob_contacts_remote]
type = carddav

View file

@ -33,7 +33,6 @@ class FilesystemStorage(Storage):
trigger a re-download of everything (but *should* not cause data-loss
of any kind).
:param encoding: File encoding for items.
:param create: Create directories if they don't exist.
'''
storage_name = 'filesystem'

View file

@ -38,7 +38,6 @@ class SingleFileStorage(Storage):
:param path: The filepath to the file to be written to.
:param encoding: Which encoding the file should use. Defaults to UTF-8.
:param create: Create the file if it does not exist.
Example for syncing with :py:class:`vdirsyncer.storage.CaldavStorage`::