Skip to content

Commit be9b15a

Browse files
committed
PG-526: bump version to 1.1.1 and adding release notes
Signed-off-by: Kai Wagner <[email protected]>
1 parent cddc838 commit be9b15a

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pg_stat_monitor",
33
"abstract": "PostgreSQL Query Performance Monitoring Tool",
44
"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.",
5-
"version": "1.1.0",
5+
"version": "1.1.1",
66
"maintainer": [
77
88
],
@@ -12,7 +12,7 @@
1212
"abstract": "PostgreSQL Query Performance Monitoring Tool",
1313
"file": "pg_stat_monitor--1.0.sql",
1414
"docfile": "README.md",
15-
"version": "1.1.0"
15+
"version": "1.1.1"
1616
}
1717
},
1818
"prereqs": {

RELEASE_NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
Below is the complete list of release notes for every version of ``pg_stat_monitor``.
44

5+
## 1.1.1
6+
7+
### Bugs Fixed
8+
9+
[PG-520](https://jira.percona.com/browse/PG-520): pg_stat_monitor does not work with PostgreSQL15
10+
11+
512
## 1.1.0
613

714
### Improvements

pg_stat_monitor.c

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

2929
PG_MODULE_MAGIC;
3030

31-
#define BUILD_VERSION "1.1.0"
31+
#define BUILD_VERSION "1.1.1"
3232
#define PG_STAT_STATEMENTS_COLS 53 /* maximum of above */
3333
#define PGSM_TEXT_FILE PGSTAT_STAT_PERMANENT_DIRECTORY "pg_stat_monitor_query"
3434

regression/expected/version.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CREATE EXTENSION pg_stat_monitor;
22
SELECT pg_stat_monitor_version();
33
pg_stat_monitor_version
44
-------------------------
5-
1.1.0
5+
1.1.1
66
(1 row)
77

88
DROP EXTENSION pg_stat_monitor;

0 commit comments

Comments
 (0)