fix bug with unicode in README
authorSteven Tobin <steventtobin (at) gmail.com>
Thu, 17 Jan 2019 22:34:15 +0000 (22:34 +0000)
committerSteven Tobin <steventtobin (at) gmail.com>
Thu, 17 Jan 2019 22:34:15 +0000 (22:34 +0000)
README.rst
setup.py

index 8607ba1f310c71027373c8ef2da3b9ece55ea2ff..b14d5c44cf3bca3fd131ce324c96f21a4e9786dc 100644 (file)
@@ -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
index 614ae8e58364210149f8e206bd411eaad8603b9b..2c752a0cdf93801ff61df5ec4bbad470b9be0099 100644 (file)
--- 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',
git clone https://git.99rst.org/PROJECT