From 515401b633b99f2f4b8b316125cc7820b85fc52d Mon Sep 17 00:00:00 2001 From: Mjumbe Poe Date: Thu, 9 Feb 2023 12:38:38 -0500 Subject: [PATCH] 1.3.9 --- .travis.yml | 4 ++-- CHANGES.rst | 7 +++++++ docs/index.rst | 2 +- jstemplate/__init__.py | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 05cf82c..43da06a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,9 @@ python: - "3.4" env: - - DJANGO="django<1.7" # 1.6.x - - DJANGO="django<1.8" # 1.7.x - DJANGO="django<1.9" # 1.8.x + - DJANGO="django<3" # 2.2.x + - DJANGO="django<4" # 3.2.x - DJANGO="git+git://github.com/django/django.git@master#egg=django" # command to install dependencies diff --git a/CHANGES.rst b/CHANGES.rst index 824d3a1..df25853 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,13 @@ CHANGES ======= +1.3.9 +----- + +- In order to support the latest versions of Django, removed dependence on the + FILE_CHARSET setting. This means that the templates will always be read as + UTF-8. + 1.3.8 ----- diff --git a/docs/index.rst b/docs/index.rst index 7657b81..7ff49dd 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -25,7 +25,7 @@ Quickstart Dependencies ------------ -Tested with `Django`_ 1.5 through trunk, and `Python`_ 2.6, 2.7, and 3.3. +Tested with `Django`_ 1.8 through trunk, and `Python`_ 2.6, 2.7, and 3.3. Almost certainly works with older versions of both. .. _Django: http://www.djangoproject.com/ diff --git a/jstemplate/__init__.py b/jstemplate/__init__.py index ffa9fec..d427944 100644 --- a/jstemplate/__init__.py +++ b/jstemplate/__init__.py @@ -1 +1 @@ -__version__ = "1.3.8" +__version__ = "1.3.9"