From 85868161941eeb4cabbf12b5b6dcf0a7fc61e3c0 Mon Sep 17 00:00:00 2001 From: Kai Wagner Date: Wed, 25 May 2022 17:43:11 +0200 Subject: [PATCH] PG-424: bump version to 1.0.1 (#235) Signed-off-by: Kai Wagner --- META.json | 4 ++-- pg_stat_monitor.c | 2 +- regression/expected/version.out | 2 +- rpm/pg-stat-monitor.spec | 3 +++ 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/META.json b/META.json index bcc3fdb..6f7f646 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "pg_stat_monitor", "abstract": "PostgreSQL Query Performance Monitoring Tool", "description": "pg_stat_monitor is a PostgreSQL Query Performance Monitoring tool, based on PostgreSQL's contrib module pg_stat_statements. PostgreSQL’s pg_stat_statements provides the basic statistics, which is sometimes not enough. The major shortcoming in pg_stat_statements is that it accumulates all the queries and their statistics and does not provide aggregated statistics nor histogram information. In this case, a user would need to calculate the aggregates, which is quite an expensive operation.", - "version": "1.0.0", + "version": "1.0.1", "maintainer": [ "ibrar.ahmed@percona.com" ], @@ -12,7 +12,7 @@ "abstract": "PostgreSQL Query Performance Monitoring Tool", "file": "pg_stat_monitor--1.0.sql", "docfile": "README.md", - "version": "1.0.0" + "version": "1.0.1" } }, "prereqs": { diff --git a/pg_stat_monitor.c b/pg_stat_monitor.c index f1434a4..38eea35 100644 --- a/pg_stat_monitor.c +++ b/pg_stat_monitor.c @@ -27,7 +27,7 @@ PG_MODULE_MAGIC; -#define BUILD_VERSION "1.0.0" +#define BUILD_VERSION "1.0.1" #define PG_STAT_STATEMENTS_COLS 53 /* maximum of above */ #define PGSM_TEXT_FILE "/tmp/pg_stat_monitor_query" diff --git a/regression/expected/version.out b/regression/expected/version.out index ab1dd21..225c3fe 100644 --- a/regression/expected/version.out +++ b/regression/expected/version.out @@ -2,7 +2,7 @@ CREATE EXTENSION pg_stat_monitor; SELECT pg_stat_monitor_version(); pg_stat_monitor_version ------------------------- - 1.0.0 + 1.0.1 (1 row) DROP EXTENSION pg_stat_monitor; diff --git a/rpm/pg-stat-monitor.spec b/rpm/pg-stat-monitor.spec index e4c852c..4c5ea17 100644 --- a/rpm/pg-stat-monitor.spec +++ b/rpm/pg-stat-monitor.spec @@ -65,5 +65,8 @@ sed -i 's:PG_CONFIG = pg_config:PG_CONFIG = /usr/pgsql-%{pgrel}/bin/pg_config:' %changelog +* Thu May 26 2022 Kai Wagner - 1.0.1-1 +- First patch release + * Wed Nov 17 2021 Evgeniy Patlan - 1.0.0-1 - Initial build