diff --git a/CHANGELOG.md b/CHANGELOG.md index 2563b6c..d5d5e07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.0.11 - 27.08.2020 + * Fixed ldblquote (spotted by Ziyang(Claude) Hu) + ## v0.0.10 - 16.03.2020 * Wrong upload to pypi diff --git a/setup.py b/setup.py index cb5c5e8..99f434b 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ long_description=long_description, long_description_content_type="text/markdown", author="Joshy Cyriac", - author_email="j.cyriac@gmail.com", + author_email="joshy@posteo.ch", url="https://github.com/joshy/striprtf", download_url="https://github.com/joshy/striprtf/archive/v%s.tar.gz" % about['__version__'], keywords=["rtf"], diff --git a/striprtf/_version.py b/striprtf/_version.py index 8bfdbab..afaf2b9 100644 --- a/striprtf/_version.py +++ b/striprtf/_version.py @@ -1 +1 @@ -__version__ = "0.0.10" \ No newline at end of file +__version__ = "0.0.11" \ No newline at end of file diff --git a/striprtf/striprtf.py b/striprtf/striprtf.py index 6e04e0e..cbe0d6e 100644 --- a/striprtf/striprtf.py +++ b/striprtf/striprtf.py @@ -67,7 +67,7 @@ "bullet": "\u2022", "lquote": "\u2018", "rquote": "\u2019", - "ldblquote": "\201C", + "ldblquote": "\u201C", "rdblquote": "\u201D", "row": "\n", "cell": "|",