Skip to content

Commit eb62975

Browse files
committed
Update version to 16.1
Update version descriptions to 16.1. While doing so, also fixed several mistakes in the changelog section of the spec file.
1 parent 780413d commit eb62975

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

agent/bin/pg_statsinfod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <fcntl.h>
1010
#include <sys/stat.h>
1111

12-
const char *PROGRAM_VERSION = "16.0";
12+
const char *PROGRAM_VERSION = "16.1";
1313
const char *PROGRAM_URL = "https://github.com/ossc-db/pg_statsinfo/";
1414
const char *PROGRAM_EMAIL = NULL;
1515

agent/bin/pg_statsinfod.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
#define SECS_PER_DAY 86400 /* seconds per day */
2828

2929
#define STATSINFO_CONTROL_FILE "pg_statsinfo.control"
30-
#define STATSINFO_CONTROL_VERSION 160000
30+
#define STATSINFO_CONTROL_VERSION 160001
3131

32-
#define STATSREPO_SCHEMA_VERSION 160000
32+
#define STATSREPO_SCHEMA_VERSION 160001
3333

3434
/* number of columns of csvlog */
3535
#define CSV_COLS 26

agent/bin/pg_statsrepo.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ LANGUAGE sql;
877877

878878
-- get_version() - version of statsrepo schema
879879
CREATE FUNCTION statsrepo.get_version() RETURNS text AS
880-
'SELECT CAST(''160000'' AS TEXT)'
880+
'SELECT CAST(''160001'' AS TEXT)'
881881
LANGUAGE sql IMMUTABLE;
882882

883883
-- tps() - transaction per seconds

spec/pg_statsinfo.spec

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## Set general information for pg_statsinfo.
1515
Name: pg_statsinfo
16-
Version: %{packageversion}.0
16+
Version: %{packageversion}.1
1717
Release: 1%{?dist}
1818
Summary: Performance monitoring tool for PostgreSQL
1919
Group: Applications/Databases
@@ -132,10 +132,12 @@ EOF
132132
fi
133133
fi
134134

135-
# History of pg_statsinfo-v15 RPM.
135+
# History of pg_statsinfo-v16 RPM.
136136
%changelog
137+
* Mon Jun 2 2025 - NTT OSS Center 16.1-1
138+
- pg_statsinfo 16.1 released
137139
* Thu Feb 29 2024 - NTT OSS Center 16.0-1
138-
- pg_stats_reporter 16.0 released
140+
- pg_statsinfo 16.0 released
139141
* Wed Oct 18 2023 - NTT OSS Center 15.2-1
140142
- pg_statsinfo 15.2 released
141143
* Fri Jun 30 2023 - NTT OSS Center 15.1-1

0 commit comments

Comments
 (0)