Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README CHANGELOG
include README.md CHANGELOG
graft wikitools
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

setup(name='wikitools',
version='1.2',
version='1.4',
description='Python package for interacting with a MediaWiki wiki',
long_description = """A Python package for interacting with a MediaWiki wiki using the MediaWiki API.
Designed for MediaWiki version 1.20 and higher, should work on 1.13+.
Expand Down
2 changes: 1 addition & 1 deletion wikitools/wiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __or__(self, other):
def __ror__(self, other):
return '|'.join([str(other), str(self)])

VERSION = '1.3'
VERSION = '1.4'

class Wiki:
"""A Wiki site"""
Expand Down