Skip to content

Commit

Permalink
version bump and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Jan 6, 2017
1 parent 7f0c1e8 commit 456470f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Current

### Version 0.3.9

* Fix infinite loop on continued queries: [issue #15](https://github.com/barrust/mediawiki/issues/15)
* Check by looking at the continue variable over time; if it is the same, exit
* Fix image with no url: [issue #14](https://github.com/barrust/mediawiki/issues/14)

### Version 0.3.8

* Fix empty disambiguation list items
Expand Down Expand Up @@ -32,7 +38,8 @@

* Update documentation
* Better continuous integration

* Better test data: [issue #4](https://github.com/barrust/mediawiki/issues/4)
* First version on PyPi: [issue #8](https://github.com/barrust/mediawiki/issues/8)

### Version 0.3.3

Expand Down
2 changes: 1 addition & 1 deletion mediawiki/mediawiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from .utilities import memoize

URL = 'https://github.com/barrust/mediawiki'
VERSION = '0.3.8'
VERSION = '0.3.9'


class MediaWiki(object):
Expand Down
2 changes: 1 addition & 1 deletion tests/mediawiki_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ def test_large_cont_query_images(self):
self.assertEqual(len(page.images), 2213)

def test_infinit_loop_images(self):
''' test known image infinte loop: issue #15 '''
''' test known image infinite loop: issue #15 '''
site = MediaWikiOverloaded()
res = site.responses[site.api_url]['infinite_loop_images']
page = site.page('Rober Eryol')
Expand Down

0 comments on commit 456470f

Please sign in to comment.