summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2018-11-03 14:19:07 -0700
committerDavid Lord <davidism@gmail.com>2018-11-03 14:19:07 -0700
commit6247e015ebe0006ee16e69da7aaaba20de18ec94 (patch)
tree105e6621a7c7f4ffe7c99cf81c6305fdd366e0bf /CHANGES.rst
parentd9270db4b0c5a0d582e8d3b72cfb34555108bd8e (diff)
downloadmarkupsafe-6247e015ebe0006ee16e69da7aaaba20de18ec94.tar.gz
update project files
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst37
1 files changed, 27 insertions, 10 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 463ed38..dbfb292 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,23 +1,26 @@
-.. currentmodule:: markupsafe
-
-MarkupSafe Changelog
-====================
-
-
-Version 1.1
------------
+Version 1.1.0
+-------------
Unreleased
-- ``escape`` wraps ``__html__`` result in ``Markup``, consistent with
- documented behavior. (`#69`_)
+- Drop support for Python 2.6 and 3.3.
+- Build wheels for Linux, Mac, and Windows, allowing systems without
+ a compiler to take advantage of the C extension speedups. (`#104`_)
+- Use newer CPython API on Python 3, resulting in a 1.5x speedup.
+ (`#64`_)
+- ``escape`` wraps ``__html__`` result in ``Markup``, consistent with
+ documented behavior. (`#69`_)
+.. _#64: https://github.com/pallets/markupsafe/pull/64
.. _#69: https://github.com/pallets/markupsafe/pull/69
+.. _#104: https://github.com/pallets/markupsafe/pull/104
Version 1.0
-----------
+Released 2017-03-07
+
- Fixed custom types not invoking ``__unicode__`` when used with
``format()``.
- Added ``__version__`` module attribute.
@@ -27,18 +30,24 @@ Version 1.0
Version 0.18
------------
+Released 2013-05-22
+
- Fixed ``__mul__`` and string splitting on Python 3.
Version 0.17
------------
+Released 2013-05-21
+
- Fixed a bug with broken interpolation on tuples.
Version 0.16
------------
+Released 2013-05-20
+
- Improved Python 3 Support and removed 2to3.
- Removed support for Python 3.2 and 2.5.
@@ -46,6 +55,8 @@ Version 0.16
Version 0.15
------------
+Released 2011-07-20
+
- Fixed a typo that caused the library to fail to install on pypy and
jython.
@@ -53,12 +64,16 @@ Version 0.15
Version 0.14
------------
+Released 2011-07-20
+
- Release fix for 0.13.
Version 0.13
------------
+Released 2011-07-20
+
- Do not attempt to compile extension for PyPy or Jython.
- Work around some 64bit Windows issues.
@@ -66,4 +81,6 @@ Version 0.13
Version 0.12
------------
+Released 2011-02-17
+
- Improved PyPy compatibility.