diff --git a/CHANGELOG.md b/CHANGELOG.md index e96c889..4b0b065 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ Versions and bullets are arranged chronologically from latest to oldest. -## Unreleased +## v1.0.0 +- Percent encode page titles. - Fix "TypeError: unsupported operand type(s) for +: 'int' and 'str'" ## v0.2.1 diff --git a/README.md b/README.md index 546b74c..3a91bd0 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ Fetch MediaWiki [Scribunto] modules from wikis and save as files -> **Limitations:** -> Wiki pages can have a slash(`/`) in their name, but filenames in unix can't. Slashes is converted to hyphens(`-`) on saving. - ## Install Requirements: diff --git a/setup.py b/setup.py index a5b99fd..e18f909 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="legunto", - version="0.2.1", + version="1.0.0", description="Fetch MediaWiki Scribunto modules from wikis", long_description=long_description, long_description_content_type="text/markdown",