Skip to content

Commit 03e7d34

Browse files
committed
updated for 0.3.0 release
1 parent d21b5c7 commit 03e7d34

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

HISTORY.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Release notes
22
=============
33

4+
0.3.0 (unreleased)
5+
------------------
6+
- merged https://github.com/PyFilesystem/webdavfs/pull/3
7+
[althonos]
8+
- WebDAVFS constructor uses `login` and `password` parameter
9+
instead of `credentials` dict
10+
411
0.2.0 (2017/05/04)
512
------------------
613
- new testing infrastructure on Travis using Docker images for

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ or use the public constructor of the ``WebDAVFS`` class:
2828
2929
>>> from webdavfs.webdavfs import WebDAVFS
3030
>>> url = 'http://zopyx.com:22082'
31-
>>> creds = dict(login='admin', password='admin')
3231
>>> root = '/exist/webdav/db'
33-
>>> handle = WebDAVFS(url, cred, root)
32+
>>> handle = WebDAVFS(url, login='admin', password='admin', root)
3433
>>> handle.makedir('foo')
3534
>>> print(handle.listdir('.'))
3635
....

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@
4646
tests_require=['docker'],
4747
test_suite='webdavfs.tests',
4848
url="http://pypi.python.org/pypi/fs.webdavfs/",
49-
version="0.2.1"
49+
version="0.3.0 (unreleased)"
5050
)

0 commit comments

Comments
 (0)