summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst2
-rw-r--r--src/markupsafe/__init__.py2
2 files changed, 2 insertions, 2 deletions
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 string_types
from ._compat import text_type
from ._compat import unichr
-__version__ = "1.1.0"
+__version__ = "1.1.1"
__all__ = ["Markup", "soft_unicode", "escape", "escape_silent"]