Skip to content

Commit

Permalink
Release 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer committed Aug 21, 2021
1 parent 140bdf2 commit d83f081
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion aiohttp_jinja2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit d83f081

Please sign in to comment.