Skip to content

Commit a726db1

Browse files
committed
Bump version to 14.3
1 parent 58fd918 commit a726db1

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
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 = "14.2";
12+
const char *PROGRAM_VERSION = "14.3";
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 140200
30+
#define STATSINFO_CONTROL_VERSION 140300
3131

32-
#define STATSREPO_SCHEMA_VERSION 140200
32+
#define STATSREPO_SCHEMA_VERSION 140300
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
@@ -840,7 +840,7 @@ LANGUAGE sql;
840840

841841
-- get_version() - version of statsrepo schema
842842
CREATE FUNCTION statsrepo.get_version() RETURNS text AS
843-
'SELECT CAST(''140200'' AS TEXT)'
843+
'SELECT CAST(''140300'' AS TEXT)'
844844
LANGUAGE sql IMMUTABLE;
845845

846846
-- tps() - transaction per seconds

reporter/pg_statsinfo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include "pg_statsinfo.h"
88

9-
const char *PROGRAM_VERSION = "14.2";
9+
const char *PROGRAM_VERSION = "14.3";
1010
const char *PROGRAM_URL = "https://github.com/ossc-db/pg_statsinfo/";
1111
const char *PROGRAM_EMAIL = NULL;
1212

spec/pg_statsinfo.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
## Set general information for pg_statsinfo.
1212
Name: pg_statsinfo
13-
Version: 14.2
13+
Version: 14.3
1414
Release: 1%{?dist}
1515
Summary: Performance monitoring tool for PostgreSQL
1616
Group: Applications/Databases
@@ -126,6 +126,8 @@ fi
126126

127127
# History of pg_statsinfo-v14 RPM.
128128
%changelog
129+
* Wed Oct 18 2023 - NTT OSS Center 14.3-1
130+
- pg_statsinfo 14.3 released
129131
* Fri Jul 7 2023 - NTT OSS Center 14.2-1
130132
- pg_statsinfo 14.2 released
131133
* Tue Nov 1 2022 - NTT OSS Center 14.1-1

0 commit comments

Comments
 (0)