summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2012-07-02 22:01:17 +0200
committerMarcel Hellkamp <marc@gsites.de>2012-07-02 22:01:17 +0200
commit81d1c22620713cf783e243365964b294d54b6a3f (patch)
tree2a407ce152655c3b0f6aca1eed6a144cd0baa8f3
parentacf5c41da6c8ae9bb3c41adfebcc2901f9ff57c3 (diff)
downloadbottle-81d1c22620713cf783e243365964b294d54b6a3f.tar.gz
docs: Updated changelog
-rwxr-xr-xdocs/changelog.rst16
1 files changed, 10 insertions, 6 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 109aa8b..cda94fd 100755
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -10,18 +10,22 @@ Release 0.11
.. warning: Not released yet.
-* Support for partial downloads (``Range`` header) in :func:`static_file`.
* Native support for Python 2.x and 3.x syntax. No need to run 2to3 anymore.
+* Support for partial downloads (``Range`` header) in :func:`static_file`.
+* The new :class:`ResourceManager` interface helps locating files bundled with the application.
+* Added a server adapter for `waitress <http://docs.pylonsproject.org/projects/waitress/en/latest/>`_.
+* New :meth:`Bottle.merge` method to install all routes from one application into another.
+* New :attr:`BaseRequest.app` property to get the application object that handles that request.
+* Added :meth:`FormsDict.decode()` to get an all-unicode version (needed by WTForms).
+* :class:`MultiDict` and subclasses are now pickle-able.
.. rubric:: API Changes
-These APIs will most probably change in the next release.
-
* :attr:`Response.status` is a read-write property that can be assigned either a numeric status code or a status string with a reason phrase (``200 OK``). The return value is now a string to better match existing APIs (WebOb, werkzeug). To be absolutely clear, you can use the read-only properties :attr:`BaseResponse.status_code` and :attr:`BaseResponse.status_line`.
-* :func:`run` is now a method of :class:`Bottle`. The module-level :func:`run` function still works and can be used further.
-* New :meth:`Bottle.merge` method to install all routes from one application into another.
-* New :attr:`BaseRequest.app` property to get the application object that handles that request.
+.. rubric:: API Deprecations
+
+* :class:`SimpleTALTemplate` is now deprecating. There seems to be no demand.
Release 0.10
==============