Skip to content

Commit 910349a

Browse files
committed
Update README and setup for version 1.2.0
Also replace distutils by setuptools in setup.py.
1 parent 8057a5e commit 910349a

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ API is described `here <http://python-dokuwiki.readthedocs.org/en/latest/>`_.
3131

3232
Release notes
3333
-------------
34+
1.2.0 (2019-06-25)
35+
~~~~~~~~~~~~~~~~~~
36+
* Support of HTTPS for cookie based authentication.
37+
3438
1.1.0 (2018-03-22)
3539
~~~~~~~~~~~~~~~~~~
3640
* Support authentication by cookie (thanks to *luminisward*).

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3-
from distutils.core import setup
4-
setup(
3+
import setuptools
4+
5+
setuptools.setup(
56
name = 'dokuwiki',
6-
version = '1.1.0',
7+
version = '1.2.0',
78
author = 'François Ménabé',
89
author_email = 'francois.menabe@gmail.com',
910
url = 'http://python-dokuwiki.readthedocs.org/en/latest/',

0 commit comments

Comments
 (0)