Skip to content

Commit add103a

Browse files
committed
Add .. version{added,changed}:: markup
1 parent f1d94c7 commit add103a

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

docs/web.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ High-level HTTP Server
99

1010
.. versionchanged:: 0.12
1111

12+
The module was deeply refactored in backward incompatible manner.
13+
1214
Run a simple web server
1315
-----------------------
1416

@@ -88,6 +90,11 @@ Also you can specify regexp for variable route in form ``{name:regexp}``::
8890
By default regexp is ``[^{}/]+``.
8991

9092

93+
.. versionadded:: 0.13
94+
95+
Support for custom regexps in variable routes.
96+
97+
9198
Handlers can be first-class functions, e.g.::
9299

93100
@asyncio.coroutine
@@ -721,6 +728,8 @@ arbitrary properties for later access from
721728
:param middlewares: sequence of middleware factories, see
722729
:ref:`aiohttp-web-middlewares` for details.
723730

731+
.. versionadded:: 0.13
732+
724733
:param kwargs: optional params for initializing self dict.
725734

726735
.. attribute:: router
@@ -898,8 +907,6 @@ Router is any object that implements :class:`AbstractRouter` interface.
898907
Route
899908
^^^^^
900909

901-
.. versionadded:: 0.11
902-
903910
Default router :class:`UrlDispatcher` operates with *routes*.
904911

905912
User should not instantiate route classes by hand but can give *named
@@ -1151,6 +1158,8 @@ and list of allowed methods::
11511158
Middlewares
11521159
-----------
11531160

1161+
.. versionadded:: 0.13
1162+
11541163
:class:`Application` accepts *middlewares* keyword-only parameter,
11551164
which should be sequence of *middleware factories*.
11561165

0 commit comments

Comments
 (0)