From d35843a88e575bf24c765bb0c5e327bb68d868d2 Mon Sep 17 00:00:00 2001 From: benoit Date: Thu, 15 Sep 2022 14:00:54 +0200 Subject: [PATCH] Release V3.0.0 Breaking change: * Attr 18.1 is required Change log: * Add more information to the header (instance and process stats) (Tests by @Krysztophe) * Add the --refresh option to the cli to set the refresh rate (#293) (Requested by @crysman) * Add the --debug-file option to enable logging (still mostly unused) * Add hints about runtime disabled features (#300) (Reported by @rutchkiwi) * The SUPERUSER privilege is not longer required (#277) (Requested by @Raymondmax) Bug fixes: * Add the --no-walreceiver to disable wal receiver stats for Aurora (#301) (Reported by @grutz) * Add the --no-tempfiles option to disable temp file statistics and add it to the --rds command (#303) (Reported by @adityabaradwaj) * Fix server information queries for v12/v13 (Reported and fixed by @kmoppel-cognite) * Fix InvalidTextRepresentation errors (#275) (Fix proposed by @ssharunas) * Fix sort order for parallel queries (#297) (Reported and fixed by @kmoppel-cognite) * Doc fixes and packaging improvements (@kianmeng, @Vampouille) --- docs/man/pg_activity.1 | 2 +- pgactivity/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/man/pg_activity.1 b/docs/man/pg_activity.1 index e36b30a0..d8b5c256 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 "2022-09-06" "pg_activity 3.0.0a1" "Command line tool for PostgreSQL server activity monitoring." +.TH PG_ACTIVITY 1 "2022-09-07" "pg_activity 3.0.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/pgactivity/__init__.py b/pgactivity/__init__.py index 7cf50d07..528787cf 100644 --- a/pgactivity/__init__.py +++ b/pgactivity/__init__.py @@ -1 +1 @@ -__version__ = "3.0.0a1" +__version__ = "3.0.0"