summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--jinja2/bccache.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 4d8fabb..8baa123 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,8 @@ Version 2.9.4
(unreleased bugfix release)
- Solved some warnings for string literals. (#646)
+- Increment the bytecode cache version which was not done due to an
+ oversight before.
Version 2.9.3
-------------
diff --git a/jinja2/bccache.py b/jinja2/bccache.py
index e58633e..d687d03 100644
--- a/jinja2/bccache.py
+++ b/jinja2/bccache.py
@@ -45,7 +45,7 @@ else:
return marshal.loads(f.read())
-bc_version = 2
+bc_version = 3
# magic version used to only change with new jinja versions. With 2.6
# we change this to also take Python version changes into account. The