Skip to content

Commit

Permalink
Update README and setup for version 1.2.0
Browse files Browse the repository at this point in the history
Also replace distutils by setuptools in setup.py.
  • Loading branch information
fmenabe committed Jun 25, 2019
1 parent 8057a5e commit 910349a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ API is described `here <http://python-dokuwiki.readthedocs.org/en/latest/>`_.

Release notes
-------------
1.2.0 (2019-06-25)
~~~~~~~~~~~~~~~~~~
* Support of HTTPS for cookie based authentication.

1.1.0 (2018-03-22)
~~~~~~~~~~~~~~~~~~
* Support authentication by cookie (thanks to *luminisward*).
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-

from distutils.core import setup
setup(
import setuptools

setuptools.setup(
name = 'dokuwiki',
version = '1.1.0',
version = '1.2.0',
author = 'François Ménabé',
author_email = 'francois.menabe@gmail.com',
url = 'http://python-dokuwiki.readthedocs.org/en/latest/',
Expand Down

0 comments on commit 910349a

Please sign in to comment.