diff --git a/CHANGELOG.md b/CHANGELOG.md index e56c17c..1f625b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ Here's what we all hope is an accurate list of things that have changed between versions. +## v0.5.1 + +* fixes wrapping (and extra spaces) when width specified on command line +* thematic break now uses unicode wide dash and obeys width + ## v0.5.0 * adding --width flag to command line diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1f0396b..d5c7591 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,3 +17,4 @@ for some pretty graphs. * ap8322, changed setup.py from CommonMark to commonmark * pmiddend, asked about click 7, prompted pyinstaller freezing * igalic, idea for --width +* lordmauve, pointed out width and spaces bug diff --git a/consolemd/__init__.py b/consolemd/__init__.py index a77be82..c81524b 100644 --- a/consolemd/__init__.py +++ b/consolemd/__init__.py @@ -1,5 +1,5 @@ __title__ = 'consolemd' -__version__ = '0.5.0' +__version__ = '0.5.1' __author__ = 'Kurt Neufeld' __author_email__ = 'kneufeld@burgundywall.com' __license__ = 'MIT License'