From a9b9258203d8b2e900196b3817c4f2890229667d Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 9 Jan 2017 11:02:55 +0100 Subject: [PATCH] Increment bytecode cache version. Fixes #650 --- CHANGES | 2 ++ jinja2/bccache.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 -- 2.47.2