Skip to content

Commit ec6e676

Browse files
committed
Bump to 0.7.0
1 parent 49f24e0 commit ec6e676

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGES.txt

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

4+
0.7.0 (2015-12-30)
5+
------------------
6+
7+
- Add ability to decorate class based views (available in aiohttp 0.20) #18
8+
9+
- Upgrade aiohttp requirement to version 0.20.0+
10+
411
0.6.2 (2015-11-22)
512
------------------
613

aiohttp_jinja2/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from aiohttp.abc import AbstractView
77

88

9-
__version__ = '0.6.3'
9+
__version__ = '0.7.0'
1010

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

@@ -23,8 +23,8 @@ def setup(app, *args, app_key=APP_KEY, context_processors=(), **kwargs):
2323
app[APP_CONTEXT_PROCESSORS_KEY] = context_processors
2424
app.middlewares.append(context_processors_middleware)
2525

26-
def url(__aiohttp_jinjs2_route_name, **kwargs):
27-
return app.router[__aiohttp_jinjs2_route_name].url(**kwargs)
26+
def url(__aiohttp_jinja2_route_name, **kwargs):
27+
return app.router[__aiohttp_jinja2_route_name].url(**kwargs)
2828

2929
env.globals['url'] = url
3030
env.globals['app'] = app

0 commit comments

Comments
 (0)