From: Armin Ronacher Date: Mon, 9 Jan 2017 10:02:55 +0000 (+0100) Subject: Increment bytecode cache version. Fixes #650 X-Git-Tag: 2.9.4~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9b9258203d8b2e900196b3817c4f2890229667d;p=thirdparty%2Fjinja.git Increment bytecode cache version. Fixes #650 --- diff --git a/CHANGES b/CHANGES index 4d8fabb1..8baa1236 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 e58633e4..d687d036 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