summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-23 23:40:51 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-04-23 23:40:51 +0200
commit5cf29d01122ae50736bb2e088e4696bf168fc77e (patch)
tree77e18a24c1164cce3c982f3b5847f2971db1670a
parent6ab4d311bb76386651eb1cfe5f1e93783d30330d (diff)
downloadpaste-git-5cf29d01122ae50736bb2e088e4696bf168fc77e.tar.gz
Update changelog
-rw-r--r--docs/news.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/news.txt b/docs/news.txt
index d80d84b..4bc23a3 100644
--- a/docs/news.txt
+++ b/docs/news.txt
@@ -6,7 +6,21 @@ News
development version
-------------------
-* Fix paste.util.html_quote(unicode): don't encode the string to escape it
+* Fix setup.py for six dependency: move the six dependency from extras_require
+ to install_requires.
+
+* On Python 2, paste.util.quoting.html_quote(unicode) now returns unicode,
+ instead of bytes.
+
+* Port paste.proxy to Python 3.
+
+* Fix paste.exceptions.serial_number_generator.hash_identifier() on Python 3.
+
+* Fix paste.util.threadedprint.uninstall(). Rename duplicated uninstall()
+ function to uninstall_stdin() and fix typo in variable name (_oldstin =>
+ _oldstdin).
+
+* Add README.rst file.
2.0
---