]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Increment bytecode cache version. Fixes #650
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 9 Jan 2017 10:02:55 +0000 (11:02 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 9 Jan 2017 10:02:55 +0000 (11:02 +0100)
CHANGES
jinja2/bccache.py

diff --git a/CHANGES b/CHANGES
index 4d8fabb17b72246c79648626ba158c73bab49c82..8baa1236d0948b5af4f3faeaf4943bf07ec65052 100644 (file)
--- 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
 -------------
index e58633e4b85260e51dbe7c25d60f231f2285411f..d687d036fb73a4cca1cae49990496ff9efc74f74 100644 (file)
@@ -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