Skip to content

Commit 0c50b23

Browse files
Prepare release 2.1.0 (#482)
* Update META.json * Drop RELEASE_NOTES.md * Update meson.build * Remove mkdocs.yml
1 parent 3bb6579 commit 0c50b23

File tree

4 files changed

+13
-426
lines changed

4 files changed

+13
-426
lines changed

META.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,26 @@
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": "2.0.4",
5+
"version": "2.1.0",
66
"maintainer": [
7-
8-
7+
"Artem Gavrilov <[email protected]>",
8+
"Diego dos Santos Fronza <[email protected]>"
99
],
10-
"license": "postgresql",
10+
"license": {
11+
"PostgreSQL": "https://www.postgresql.org/about/licence"
12+
},
1113
"provides": {
1214
"pg_stat_monitor": {
1315
"abstract": "PostgreSQL Query Performance Monitoring Tool",
14-
"file": "pg_stat_monitor--2.0.sql",
16+
"file": "pg_stat_monitor--2.0--2.1.sql",
1517
"docfile": "README.md",
16-
"version": "2.0.4"
18+
"version": "2.1.0"
1719
}
1820
},
1921
"prereqs": {
2022
"runtime": {
2123
"requires": {
22-
"PostgreSQL": "11.0.0"
24+
"PostgreSQL": "12.0.0"
2325
}
2426
}
2527
},
@@ -34,7 +36,7 @@
3436
"type": "git"
3537
}
3638
},
37-
"generated_by": "[email protected]",
39+
"generated_by": "Artem Gavrilov",
3840
"meta-spec": {
3941
"version": "1.0.0",
4042
"url": "http://pgxn.org/meta/spec.txt"

RELEASE_NOTES.md

Lines changed: 0 additions & 317 deletions
This file was deleted.

meson.build

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ install_data(
1616
'pg_stat_monitor.control',
1717
'pg_stat_monitor--2.0.sql',
1818
'pg_stat_monitor--1.0--2.0.sql',
19+
'pg_stat_monitor--2.0--2.1.sql',
1920
kwargs: contrib_data_args,
2021
)
2122

@@ -31,11 +32,13 @@ tests += {
3132
'cmd_type',
3233
'counters',
3334
'database',
35+
'different_parent_queries'
3436
'error_insert',
3537
'error',
3638
'functions',
3739
'guc',
3840
'histogram',
41+
'level_tracking'
3942
'pgsqm_query_id',
4043
'relations',
4144
'rows',

0 commit comments

Comments
 (0)