Skip to content

Commit

Permalink
Bump version to 15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tashiro-hisashi authored and horiguti committed Nov 2, 2023
1 parent 51ddb82 commit fb664b9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion agent/bin/pg_statsinfod.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <fcntl.h>
#include <sys/stat.h>

const char *PROGRAM_VERSION = "15.1";
const char *PROGRAM_VERSION = "15.2";
const char *PROGRAM_URL = "https://github.com/ossc-db/pg_statsinfo/";
const char *PROGRAM_EMAIL = NULL;

Expand Down
4 changes: 2 additions & 2 deletions agent/bin/pg_statsinfod.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
#define SECS_PER_DAY 86400 /* seconds per day */

#define STATSINFO_CONTROL_FILE "pg_statsinfo.control"
#define STATSINFO_CONTROL_VERSION 150100
#define STATSINFO_CONTROL_VERSION 150200

#define STATSREPO_SCHEMA_VERSION 150100
#define STATSREPO_SCHEMA_VERSION 150200

/* number of columns of csvlog */
#define CSV_COLS 26
Expand Down
2 changes: 1 addition & 1 deletion agent/bin/pg_statsrepo.sql
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ LANGUAGE sql;

-- get_version() - version of statsrepo schema
CREATE FUNCTION statsrepo.get_version() RETURNS text AS
'SELECT CAST(''150100'' AS TEXT)'
'SELECT CAST(''150200'' AS TEXT)'
LANGUAGE sql IMMUTABLE;

-- tps() - transaction per seconds
Expand Down
2 changes: 1 addition & 1 deletion reporter/pg_statsinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include "pg_statsinfo.h"

const char *PROGRAM_VERSION = "15.1";
const char *PROGRAM_VERSION = "15.2";
const char *PROGRAM_URL = "https://github.com/ossc-db/pg_statsinfo/";
const char *PROGRAM_EMAIL = NULL;

Expand Down
4 changes: 3 additions & 1 deletion spec/pg_statsinfo.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## Set general information for pg_statsinfo.
Name: pg_statsinfo
Version: 15.1
Version: 15.2
Release: 1%{?dist}
Summary: Performance monitoring tool for PostgreSQL
Group: Applications/Databases
Expand Down Expand Up @@ -126,6 +126,8 @@ fi

# History of pg_statsinfo-v15 RPM.
%changelog
* Wed Oct 18 2023 - NTT OSS Center 15.2-1
- pg_statsinfo 15.2 released
* Fri Jun 30 2023 - NTT OSS Center 15.1-1
- pg_statsinfo 15.1 released
* Wed Feb 1 2023 - NTT OSS Center 15.0-1
Expand Down

0 comments on commit fb664b9

Please sign in to comment.