Skip to content

Commit ab1aed2

Browse files
committed
Bump to 1.1.1
1 parent 0218f8f commit ab1aed2

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGES.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGES
22
=======
33

4+
1.1.1 (2016-11-04)
5+
------------------
6+
7+
- Fix documentation generation #1120
8+
49
1.1.0 (2016-11-03)
510
------------------
611

@@ -100,4 +105,3 @@ CHANGES
100105
- Don't flap `tcp_cork` in client code, use TCP_NODELAY mode by default.
101106

102107
- Implement `web.Request.clone()` #1361
103-

aiohttp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.1.0'
1+
__version__ = '1.1.1'
22

33
# Deprecated, keep it here for a while for backward compatibility.
44
import multidict # noqa

docs/deployment.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ For full reference read `Nginx tutorial
5757
documentation
5858
<http://nginx.org/en/docs/http/ngx_http_proxy_module.html>`_.
5959

60-
First configure HTTP server itself::
60+
First configure HTTP server itself:
61+
62+
.. code-block:: nginx
6163
6264
http {
6365
server {
@@ -88,7 +90,9 @@ and redirects everything to ``aiohttp`` backend group.
8890
Also it serves static files from ``/path/to/app/static`` path as
8991
``example.com/static``.
9092

91-
Next we need to configure *aiohttp upstream group*::
93+
Next we need to configure *aiohttp upstream group*:
94+
95+
.. code-block:: nginx
9296
9397
http {
9498
upstream aiohttp {

0 commit comments

Comments
 (0)