diff --git a/CHANGES.rst b/CHANGES.rst index 145242f8..4e9a6ee6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,13 @@ CHANGES ======= -1.4.1 (2020-11-23) +1.5 (2021-08-21) +---------------- + +- Drop support for jinaj2 <3. Add support for 3+. +- Don't require ``typing_extensions`` on Python 3.8+. + +1.4.2 (2020-11-23) ------------------ - Add CHANGES.rst to MANIFEST.in and sdist #402 diff --git a/aiohttp_jinja2/__init__.py b/aiohttp_jinja2/__init__.py index cb1081fe..c9420e0e 100644 --- a/aiohttp_jinja2/__init__.py +++ b/aiohttp_jinja2/__init__.py @@ -29,7 +29,7 @@ from .helpers import GLOBAL_HELPERS from .typedefs import Filters -__version__ = "1.4.2" +__version__ = "1.5" __all__ = ("setup", "get_env", "render_template", "render_string", "template") diff --git a/setup.py b/setup.py index 661f1f06..1a6cdd2e 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ def read(f): url="https://github.com/aio-libs/aiohttp_jinja2/", license="Apache 2", packages=["aiohttp_jinja2"], - python_requires=">=3.5.3", + python_requires=">=3.6", install_requires=install_requires, include_package_data=True, )