From 0022419baf6e394750ededb8b2a3ba6c90556b12 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sun, 22 Nov 2020 17:51:27 +0200 Subject: [PATCH] Bump to 1.4.1 --- CHANGES.rst | 5 +++++ aiohttp_jinja2/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2441f39a..3341c529 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ CHANGES ======= +1.4.1 (2020-11-22) +------------------ + +- Document async rendering functions #396 + 1.4.0 (2020-11-12) ------------------ diff --git a/aiohttp_jinja2/__init__.py b/aiohttp_jinja2/__init__.py index 1e5f39f0..cbd4dad5 100644 --- a/aiohttp_jinja2/__init__.py +++ b/aiohttp_jinja2/__init__.py @@ -24,7 +24,7 @@ from .helpers import GLOBAL_HELPERS from .typedefs import Filters -__version__ = "1.4.0" +__version__ = "1.4.1" __all__ = ("setup", "get_env", "render_template", "render_string", "template")