Skip to content

Commit dd45e56

Browse files
committed
Bump to 0.8.0
1 parent 5cb9d82 commit dd45e56

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGES.txt

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

4+
0.8.0 (2016-07-12)
5+
------------------
6+
7+
- Add ability to render template without context #28
8+
49
0.7.0 (2015-12-30)
510
------------------
611

aiohttp_jinja2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from aiohttp.abc import AbstractView
77

88

9-
__version__ = '0.7.1'
9+
__version__ = '0.8.0'
1010

1111
__all__ = ('setup', 'get_env', 'render_template', 'template')
1212

tests/test_simple_renderer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ def go():
120120

121121
handler = Handler()
122122

123-
resp = yield from self._create_app_with_template(template, handler.meth)
123+
resp = yield from self._create_app_with_template(template,
124+
handler.meth)
124125

125126
self.assertEqual(200, resp.status)
126127
txt = yield from resp.text()

0 commit comments

Comments
 (0)