From d3a751f46d858895690d72eade4b0cebaf704b67 Mon Sep 17 00:00:00 2001 From: benoit Date: Fri, 25 Sep 2020 16:13:40 +0200 Subject: [PATCH] Bump version to 1.6.2 Bug fixes: * Fix problems with versions of PostgreSQL older than 9.2. With this release of PostgreSQL, the column state was added in pg_stat_activity. The column current_query was also renamed to query. (fix: @blogh) --- pg_activity | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pg_activity b/pg_activity index 5ce63c0e..6519a122 100755 --- a/pg_activity +++ b/pg_activity @@ -27,7 +27,7 @@ SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. from __future__ import print_function -PGTOP_VERSION = "1.6.1" +PGTOP_VERSION = "1.6.2" import os import sys diff --git a/setup.py b/setup.py index 2066b7b2..9d11736f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name = 'pg_activity', - version = '1.6.1', + version = '1.6.2', author = 'Julien Tachoires', author_email = 'julmon@gmail.com', scripts = ['pg_activity'],