From 0b827fcf58d47c0560521121941793a9bd19c959 Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Mon, 16 May 2022 15:45:55 +0800 Subject: [PATCH] Release 4.1.3 --- CHANGELOG | 14 ++++++++++++++ powa/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 11c4caf2..e2f0846c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +4.1.3: + New features: + - Add a new cookie_expires_days option (Julien Rouhaud, per request from + github user Kamal-Villupuram) + - Use pgsql language set for highlighting (Christoph Dreis) + Bug fixes: + - Allow missing pg_stat_kcache records (Julien Rouhaud, per report from + Christoph Dreis) + - Fix query unjumbling code (Julien Rouhaud, per report from Martin Aparicio + and Frédéric Yhuel) + - Correctly handle multiple queries with the same qual in the wizard (Julien + Rouhaud) + Misc: + - Update build and build dependencies and highlight.js (Christoph Dreis) 4.1.2: Bug fixes: - Restore compatibility with tornado 2.0, thanks to github user hrawulwa for diff --git a/powa/__init__.py b/powa/__init__.py index 6508f607..59a2245b 100644 --- a/powa/__init__.py +++ b/powa/__init__.py @@ -5,7 +5,7 @@ import os import re -__VERSION__ = '4.1.2' +__VERSION__ = '4.1.3' ver_tmp = re.sub("(alpha|beta)[0-9]*", "", __VERSION__) __VERSION_NUM__ = [int(part) for part in (ver_tmp.split('.'))]