1Version 2.0.1 2------------- 3 4Released 2021-05-18 5 6- Mark top-level names as exported so type checking understands 7 imports in user projects. :pr:`215` 8- Fix some types that weren't available in Python 3.6.0. :pr:`215` 9 10 11Version 2.0.0 12------------- 13 14Released 2021-05-11 15 16- Drop Python 2.7, 3.4, and 3.5 support. 17- ``Markup.unescape`` uses :func:`html.unescape` to support HTML5 18 character references. :pr:`117` 19- Add type annotations for static typing tools. :pr:`149` 20 21 22Version 1.1.1 23------------- 24 25Released 2019-02-23 26 27- Fix segfault when ``__html__`` method raises an exception when using 28 the C speedups. The exception is now propagated correctly. :pr:`109` 29 30 31Version 1.1.0 32------------- 33 34Released 2018-11-05 35 36- Drop support for Python 2.6 and 3.3. 37- Build wheels for Linux, Mac, and Windows, allowing systems without 38 a compiler to take advantage of the C extension speedups. :pr:`104` 39- Use newer CPython API on Python 3, resulting in a 1.5x speedup. 40 :pr`64` 41- ``escape`` wraps ``__html__`` result in ``Markup``, consistent with 42 documented behavior. :pr:`69` 43 44 45Version 1.0 46----------- 47 48Released 2017-03-07 49 50- Fixed custom types not invoking ``__unicode__`` when used with 51 ``format()``. 52- Added ``__version__`` module attribute. 53- Improve unescape code to leave lone ampersands alone. 54 55 56Version 0.18 57------------ 58 59Released 2013-05-22 60 61- Fixed ``__mul__`` and string splitting on Python 3. 62 63 64Version 0.17 65------------ 66 67Released 2013-05-21 68 69- Fixed a bug with broken interpolation on tuples. 70 71 72Version 0.16 73------------ 74 75Released 2013-05-20 76 77- Improved Python 3 Support and removed 2to3. 78- Removed support for Python 3.2 and 2.5. 79 80 81Version 0.15 82------------ 83 84Released 2011-07-20 85 86- Fixed a typo that caused the library to fail to install on pypy and 87 jython. 88 89 90Version 0.14 91------------ 92 93Released 2011-07-20 94 95- Release fix for 0.13. 96 97 98Version 0.13 99------------ 100 101Released 2011-07-20 102 103- Do not attempt to compile extension for PyPy or Jython. 104- Work around some 64bit Windows issues. 105 106 107Version 0.12 108------------ 109 110Released 2011-02-17 111 112- Improved PyPy compatibility. 113