Skip to content

Commit 29ad25c

Browse files
committed
updated
1 parent 2ee978c commit 29ad25c

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

HISTORY.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Release notes
2+
=============
3+
4+
0.2.0 (2017/05/04)
5+
------------------
6+
- new testing infrastructure on Travis using Docker images for
7+
testing against Python 2.7-3.6
8+
9+
0.1.0 (2017/04/10)
10+
------------------
11+
12+
- initial release

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
with io.open('README.rst', 'r', encoding='utf8') as f:
2121
DESCRIPTION = f.read()
2222

23+
with io.open('HISTORY.rst', 'r', encoding='utf8') as f:
24+
HISTORY = f.read()
25+
2326
REQUIREMENTS = [
2427
"fs>=2.0.0",
2528
"webdavclient2",
@@ -33,13 +36,13 @@
3336
description="WebDAV support for pyfilesystem2",
3437
install_requires=REQUIREMENTS,
3538
license="BSD",
36-
long_description=DESCRIPTION,
39+
long_description=DESCRIPTION + "\n" + HISTORY,
3740
name='fs.webdavfs',
3841
packages=find_packages(exclude=("tests",)),
3942
platforms=['any'],
4043
test_suite="nose.collector",
4144
url="http://pypi.python.org/pypi/fs.webdavfs/",
42-
version="0.1.1"
45+
version="0.2.0"
4346
)
4447

4548

0 commit comments

Comments
 (0)