From: Steven Tobin Date: Thu, 17 Jan 2019 22:34:15 +0000 (+0000) Subject: fix bug with unicode in README X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=78038ff3722d6efb7ff59ba36807e347b8967215;p=redacted-XKCD-password-generator.git fix bug with unicode in README --- diff --git a/README.rst b/README.rst index 8607ba1..b14d5c4 100644 --- a/README.rst +++ b/README.rst @@ -187,6 +187,7 @@ or setting the appropriate environment variable:: Changelog ========= +- **1.17.1** Fix issue with README and unicode encoding - **1.17.0** Add French, Norwegian, and Portuguese dictionaries. Bugfixes and improvements to tests (WIP). - **1.16.5** Adds title case option for `--case` - **1.16.4** Improve unit tests, fixes broken test on python 2 @@ -203,7 +204,6 @@ Changelog - **1.13.0** Added Spanish language wordfile (thanks to Javier Meija) - **1.12.0** Handle maximum word length < minimum case by setting max = min - **1.11.1** Fix bug in entropy calc -- **1.11.0** Rewrite verbose report to take acrostics etc into account License diff --git a/setup.py b/setup.py index 614ae8e..2c752a0 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ import sys setup( name='xkcdpass', - version='1.17.0', + version='1.17.1', author='Steven Tobin', author_email='steventtobin@gmail.com', url='https://github.com/redacted/XKCD-password-generator', description='Generate secure multiword passwords/passphrases, inspired by XKCD', - long_description=open('README.rst').read(), + long_description=open('README.rst', encoding='utf-8').read(), packages=['xkcdpass'], zip_safe=False, license='BSD',