diff --git a/LICENSE.txt b/LICENSE.txt index 072c2fd2..ae6731e0 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2012 - 2015, Julien Tachoires +Copyright (c) 2012 - 2016, Julien Tachoires Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies. diff --git a/docs/man/build-man.sh b/docs/man/build-man.sh index cdc24647..4bd1b96e 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.0" -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.3.1" -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 fdb085c3..a2a3ccfc 100644 --- a/docs/man/pg_activity.1 +++ b/docs/man/pg_activity.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PG_ACTIVITY 1" -.TH PG_ACTIVITY 1 "2015-12-02" "pg_activity 1.3.0" "Command line tool for PostgreSQL server activity monitoring." +.TH PG_ACTIVITY 1 "2016-10-04" "pg_activity 1.3.1" "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 1f0a8751..bbd25d8c 100755 --- a/pg_activity +++ b/pg_activity @@ -5,7 +5,7 @@ pg_activity author: Julien Tachoires license: PostgreSQL License -Copyright (c) 2012 - 2015, Julien Tachoires +Copyright (c) 2012 - 2016, Julien Tachoires Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written @@ -26,7 +26,7 @@ SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. from __future__ import print_function -PGTOP_VERSION = "1.3.0" +PGTOP_VERSION = "1.3.1" import os import sys diff --git a/pgactivity/Data.py b/pgactivity/Data.py index b50c3801..68d877b2 100644 --- a/pgactivity/Data.py +++ b/pgactivity/Data.py @@ -3,7 +3,7 @@ author: Julien Tachoires license: PostgreSQL License -Copyright (c) 2012 - 2015, Julien Tachoires +Copyright (c) 2012 - 2016, Julien Tachoires Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written diff --git a/pgactivity/Process.py b/pgactivity/Process.py index 3bcba702..512bcb76 100644 --- a/pgactivity/Process.py +++ b/pgactivity/Process.py @@ -3,7 +3,7 @@ author: Julien Tachoires license: PostgreSQL License -Copyright (c) 2012 - 2015, Julien Tachoires +Copyright (c) 2012 - 2016, Julien Tachoires Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written diff --git a/pgactivity/UI.py b/pgactivity/UI.py index 4da94dab..d1669da6 100644 --- a/pgactivity/UI.py +++ b/pgactivity/UI.py @@ -3,7 +3,7 @@ author: Julien Tachoires license: PostgreSQL License -Copyright (c) 2012 - 2015, Julien Tachoires +Copyright (c) 2012 - 2016, Julien Tachoires Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written diff --git a/setup.py b/setup.py index 60f1c51c..745b0454 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name = 'pg_activity', - version = '1.3.0', + version = '1.3.1', author = 'Julien Tachoires', author_email = 'julmon@gmail.com', scripts = ['pg_activity'],