diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd0a36..da6b872 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # MediaWiki Changelog +## Version 0.7.4 + +* Add typing support + ## Version 0.7.3 * Add `unordered_options` to the `DisambiguationError` to attempt to get options in the order presented on the page; [issue #124](https://github.com/barrust/mediawiki/issues/124) @@ -118,7 +122,7 @@ documentation ### Version 0.3.11 * Re-factor MediaWikiPage into its own file -* Remove setting properties outside of __init__() +* Remove setting properties outside of **init**() * Better Unicode support * Add CONTRIBUTING.md file @@ -130,27 +134,24 @@ documentation ### 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 +* 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 - ### Version 0.3.7 * Memoize support default parameters * Add support test for Python 3.6 - ### Version 0.3.6 * Updated Exception documentation * Fix badges in Readme file * Additional test coverage - ### Version 0.3.5 * Add documentation to README @@ -158,7 +159,6 @@ documentation * pip install instructions [pypi - pymediawiki](https://pypi.python.org/pypi/pymediawiki/) * Additional testing - ### Version 0.3.4 * Update documentation @@ -169,27 +169,24 @@ documentation ### Version 0.3.3 * Improve testing strategy - * Move tests to json from pickle +* Move tests to json from pickle * Improve parameter checking for geosearch * Code standardization - * Pep8 - * Pylint - * Single quote strings - +* Pep8 +* Pylint +* Single quote strings ### Version 0.3.2 * OpenSearch functionality * PrefixSearch functionality - ### Version 0.3.1 * Page Summary * Page Sections * Enforce sorting of page properties - ### Pre-Version 0.3.1 * Add MediaWiki class diff --git a/mediawiki/mediawiki.py b/mediawiki/mediawiki.py index 5d7a1ae..690352f 100644 --- a/mediawiki/mediawiki.py +++ b/mediawiki/mediawiki.py @@ -26,7 +26,7 @@ from mediawiki.utilities import memoize URL: str = "https://github.com/barrust/mediawiki" -VERSION: str = "0.7.3" +VERSION: str = "0.7.4" class MediaWiki: