From e9f56c56c12d6bef0d3aa7c061f7767e035412e5 Mon Sep 17 00:00:00 2001 From: Julien Tachoires Date: Tue, 14 Nov 2017 17:57:16 +0100 Subject: [PATCH] Bump version num. to 1.4.0 --- docs/man/build-man.sh | 2 +- docs/man/pg_activity.1 | 24 ++++++++++-------------- pg_activity | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 17 deletions(-) diff --git a/docs/man/build-man.sh b/docs/man/build-man.sh index 4bd1b96e..f614777f 100755 --- a/docs/man/build-man.sh +++ b/docs/man/build-man.sh @@ -1,3 +1,3 @@ #!/bin/bash -pod2man -r "pg_activity 1.3.1" -d `date +%Y-%m-%d` -c "Command line tool for PostgreSQL server activity monitoring." pg_activity.pod > pg_activity.1; +pod2man -r "pg_activity 1.4.0" -d `date +%Y-%m-%d` -c "Command line tool for PostgreSQL server activity monitoring." pg_activity.pod > pg_activity.1; diff --git a/docs/man/pg_activity.1 b/docs/man/pg_activity.1 index e9752a31..02d2204f 100644 --- a/docs/man/pg_activity.1 +++ b/docs/man/pg_activity.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) +.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== @@ -46,7 +46,7 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" -.\" If the F register is turned on, we'll generate index entries on stderr for +.\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. @@ -54,20 +54,16 @@ .\" Avoid warning from groff about undefined register 'F'. .de IX .. -.nr rF 0 -.if \n(.g .if rF .nr rF 1 -.if (\n(rF:(\n(.g==0)) \{ -. if \nF \{ -. de IX -. tm Index:\\$1\t\\n%\t"\\$2" +.if !\nF .nr F 0 +.if \nF>0 \{\ +. de IX +. tm Index:\\$1\t\\n%\t"\\$2" .. -. if !\nF==2 \{ -. nr % 0 -. nr F 2 -. \} +. if !\nF==2 \{\ +. nr % 0 +. nr F 2 . \} .\} -.rr rF .\" .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Fear. Run. Save yourself. No user-serviceable parts. @@ -133,7 +129,7 @@ .\" ======================================================================== .\" .IX Title "PG_ACTIVITY 1" -.TH PG_ACTIVITY 1 "2016-10-04" "pg_activity 1.3.1" "Command line tool for PostgreSQL server activity monitoring." +.TH PG_ACTIVITY 1 "2017-11-14" "pg_activity 1.4.0" "Command line tool for PostgreSQL server activity monitoring." .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/pg_activity b/pg_activity index bbd25d8c..3e62429f 100755 --- a/pg_activity +++ b/pg_activity @@ -26,7 +26,7 @@ SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. from __future__ import print_function -PGTOP_VERSION = "1.3.1" +PGTOP_VERSION = "1.4.0" import os import sys diff --git a/setup.py b/setup.py index 745b0454..2eb25b1e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name = 'pg_activity', - version = '1.3.1', + version = '1.4.0', author = 'Julien Tachoires', author_email = 'julmon@gmail.com', scripts = ['pg_activity'],