Skip to content

Commit

Permalink
Bump to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jul 12, 2016
1 parent 5cb9d82 commit dd45e56
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGES
=======

0.8.0 (2016-07-12)
------------------

- Add ability to render template without context #28

0.7.0 (2015-12-30)
------------------

Expand Down
2 changes: 1 addition & 1 deletion aiohttp_jinja2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from aiohttp.abc import AbstractView


__version__ = '0.7.1'
__version__ = '0.8.0'

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

Expand Down
3 changes: 2 additions & 1 deletion tests/test_simple_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ def go():

handler = Handler()

resp = yield from self._create_app_with_template(template, handler.meth)
resp = yield from self._create_app_with_template(template,
handler.meth)

self.assertEqual(200, resp.status)
txt = yield from resp.text()
Expand Down

0 comments on commit dd45e56

Please sign in to comment.