• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Version 1.1.1
2-------------
3
4Released 2019-02-23
5
6-   Fix segfault when ``__html__`` method raises an exception when using
7    the C speedups. The exception is now propagated correctly. (`#109`_)
8
9.. _#109: https://github.com/pallets/markupsafe/pull/109
10
11
12Version 1.1.0
13-------------
14
15Released 2018-11-05
16
17-   Drop support for Python 2.6 and 3.3.
18-   Build wheels for Linux, Mac, and Windows, allowing systems without
19    a compiler to take advantage of the C extension speedups. (`#104`_)
20-   Use newer CPython API on Python 3, resulting in a 1.5x speedup.
21    (`#64`_)
22-   ``escape`` wraps ``__html__`` result in ``Markup``, consistent with
23    documented behavior. (`#69`_)
24
25.. _#64: https://github.com/pallets/markupsafe/pull/64
26.. _#69: https://github.com/pallets/markupsafe/pull/69
27.. _#104: https://github.com/pallets/markupsafe/pull/104
28
29
30Version 1.0
31-----------
32
33Released 2017-03-07
34
35-   Fixed custom types not invoking ``__unicode__`` when used with
36    ``format()``.
37-   Added ``__version__`` module attribute.
38-   Improve unescape code to leave lone ampersands alone.
39
40
41Version 0.18
42------------
43
44Released 2013-05-22
45
46-   Fixed ``__mul__`` and string splitting on Python 3.
47
48
49Version 0.17
50------------
51
52Released 2013-05-21
53
54-   Fixed a bug with broken interpolation on tuples.
55
56
57Version 0.16
58------------
59
60Released 2013-05-20
61
62-   Improved Python 3 Support and removed 2to3.
63-   Removed support for Python 3.2 and 2.5.
64
65
66Version 0.15
67------------
68
69Released 2011-07-20
70
71-   Fixed a typo that caused the library to fail to install on pypy and
72    jython.
73
74
75Version 0.14
76------------
77
78Released 2011-07-20
79
80-   Release fix for 0.13.
81
82
83Version 0.13
84------------
85
86Released 2011-07-20
87
88-   Do not attempt to compile extension for PyPy or Jython.
89-   Work around some 64bit Windows issues.
90
91
92Version 0.12
93------------
94
95Released 2011-02-17
96
97-   Improved PyPy compatibility.
98