release 1.1.1
diff --git a/CHANGES.rst b/CHANGES.rst index ee9b974..63ecd67 100644 --- a/CHANGES.rst +++ b/CHANGES.rst
@@ -1,7 +1,7 @@ Version 1.1.1 ------------- -Unreleased +Released 2019-02-23 - Fix segfault when ``__html__`` method raises an exception when using the C speedups. The exception is now propagated correctly. (`#109`_)
diff --git a/src/markupsafe/__init__.py b/src/markupsafe/__init__.py index f9eeeb7..da05ed3 100644 --- a/src/markupsafe/__init__.py +++ b/src/markupsafe/__init__.py
@@ -20,7 +20,7 @@ from ._compat import text_type from ._compat import unichr -__version__ = "1.1.0" +__version__ = "1.1.1" __all__ = ["Markup", "soft_unicode", "escape", "escape_silent"]