From abf3a4d86526c502a89fea3e5666265e12ca1577 Mon Sep 17 00:00:00 2001 From: Guillaume Lelarge Date: Mon, 4 Apr 2022 11:02:42 +0200 Subject: [PATCH] Release 1.3 (stable) --- META.json | 6 +++--- README | 4 ++++ pg_log_userqueries.c | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/META.json b/META.json index 40ef946..6e70ab0 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "pg_log_userqueries", "abstract": "Module to log user queries", "description": "pg_log_userqueries is a PostgreSQL module that logs each query executed by a superuser. It records each query in the standard log file. Additionally you can log per database and/or per user queries.", - "version": "1.2.0", + "version": "1.3.0", "maintainer": "Guillaume Lelarge ", "license": { "PostgreSQL": "http://www.postgresql.org/about/licence" @@ -11,11 +11,11 @@ "provides": { "pg_log_userqueries": { "file": "pg_log_userqueries.so", - "version": "1.2.0" + "version": "1.3.0" } }, "meta-spec": { - "version": "1.2.0", + "version": "1.3.0", "url": "http://pgxn.org/meta/spec.txt" }, "tags": [ diff --git a/README b/README index 9831af6..f31634d 100644 --- a/README +++ b/README @@ -109,3 +109,7 @@ As pg_log_userqueries is a shared_preload_library, you'll have to restart Postgr * pg_log_userqueries.file_switchoff: path to a file that must be root-owned. If this file is present, pg_log_userqueries won't log anymore * pg_log_userqueries.time_switchoff: frequency at which backends will check file_switchoff's presence + +If you need to know the current version number of this library, you can do this: + + strings $(pg_config --libdir)/pg_log_userqueries.so | grep "pg_log_userqueries version" diff --git a/pg_log_userqueries.c b/pg_log_userqueries.c index 26cf7cd..0fb60a5 100644 --- a/pg_log_userqueries.c +++ b/pg_log_userqueries.c @@ -9,7 +9,7 @@ * *------------------------------------------------------------------------- */ -#ident "pg_log_userqueries version 1.2" +#ident "pg_log_userqueries version 1.3" #include "postgres.h"