Skip to content

Commit 41c9492

Browse files
committed
prepare for 2.7.0
1 parent 0f32f43 commit 41c9492

12 files changed

+31
-13
lines changed

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "plpgsql_check",
33
"abstract": "Additional tools for plpgsql functions validation",
44
"description": "The plpgsql_check is PostgreSQL extension with functionality for direct or indirect extra validation of functions in plpgsql language. It verifies a validity of SQL identifiers used in plpgsql code. It try to identify a performance issues. Modern versions has integrated profiler. The table and function dependencies can be displayed",
5-
"version": "2.6.2",
5+
"version": "2.7.0",
66
"maintainer": "Pavel STEHULE <pavel.stehule@gmail.com>",
77
"license": "bsd",
88
"provides": {
99
"plpgsql_check": {
1010
"abstract": "Additional tools for plpgsql functions validation",
1111
"file": "sql/plpgsql_check_active.sql",
1212
"docfile": "README.md",
13-
"version": "2.6.2"
13+
"version": "2.7.0"
1414
}
1515
},
1616
"prereqs": {

Makefile

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

33
MODULE_big = plpgsql_check
44
OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
5-
DATA = plpgsql_check--2.6.sql
5+
DATA = plpgsql_check--2.7.sql
66
EXTENSION = plpgsql_check
77

88
ifndef MAJORVERSION
File renamed without changes.

plpgsql_check.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# plpgsql_check extension
22
comment = 'extended check for plpgsql functions'
3-
default_version = '2.6'
3+
default_version = '2.7'
44
module_pathname = '$libdir/plpgsql_check'
55
relocatable = false
66
requires = 'plpgsql'

postgresql12-plpgsql_check.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global sname plpgsql_check
44

55
Name: %{sname}_%{pgmajorversion}
6-
Version: 2.6.2
6+
Version: 2.7.0
77
Release: 1%{?dist}
88
Summary: Additional tools for plpgsql functions validation
99

@@ -49,6 +49,9 @@ rm -rf %{buildroot}
4949
%{pginstdir}/share/extension/*.control
5050

5151
%changelog
52+
* Wed Dec 6 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.7.0
53+
- unclosed cursors detection
54+
5255
* Tue Oct 31 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.6.0
5356
- simple constant tracing support
5457

postgresql13-plpgsql_check.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global sname plpgsql_check
44

55
Name: %{sname}_%{pgmajorversion}
6-
Version: 2.6.2
6+
Version: 2.7.0
77
Release: 1%{?dist}
88
Summary: Additional tools for plpgsql functions validation
99

@@ -49,6 +49,9 @@ rm -rf %{buildroot}
4949
%{pginstdir}/share/extension/*.control
5050

5151
%changelog
52+
* Wed Dec 6 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.7.0
53+
- unclosed cursors detection
54+
5255
* Tue Oct 31 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.6.0
5356
- simple constant tracing support
5457

postgresql14-plpgsql_check.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global sname plpgsql_check
44

55
Name: %{sname}_%{pgmajorversion}
6-
Version: 2.6.2
6+
Version: 2.7.0
77
Release: 1%{?dist}
88
Summary: Additional tools for plpgsql functions validation
99

@@ -49,6 +49,9 @@ rm -rf %{buildroot}
4949
%{pginstdir}/share/extension/*.control
5050

5151
%changelog
52+
* Wed Dec 6 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.7.0
53+
- unclosed cursors detection
54+
5255
* Tue Oct 31 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.6.0
5356
- simple constant tracing support
5457

postgresql15-plpgsql_check.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global sname plpgsql_check
44

55
Name: %{sname}_%{pgmajorversion}
6-
Version: 2.6.2
6+
Version: 2.7.0
77
Release: 1%{?dist}
88
Summary: Additional tools for plpgsql functions validation
99

@@ -49,6 +49,9 @@ rm -rf %{buildroot}
4949
%{pginstdir}/share/extension/*.control
5050

5151
%changelog
52+
* Wed Dec 6 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.7.0
53+
- unclosed cursors detection
54+
5255
* Tue Oct 31 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.6.0
5356
- simple constant tracing support
5457

postgresql16-plpgsql_check.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global sname plpgsql_check
44

55
Name: %{sname}_%{pgmajorversion}
6-
Version: 2.6.2
6+
Version: 2.7.0
77
Release: 1%{?dist}
88
Summary: Additional tools for plpgsql functions validation
99

@@ -49,6 +49,9 @@ rm -rf %{buildroot}
4949
%{pginstdir}/share/extension/*.control
5050

5151
%changelog
52+
* Wed Dec 6 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.7.0
53+
- unclosed cursors detection
54+
5255
* Tue Oct 31 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.6.0
5356
- simple constant tracing support
5457

postgresql17-plpgsql_check.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global sname plpgsql_check
44

55
Name: %{sname}_%{pgmajorversion}
6-
Version: 2.6.2
6+
Version: 2.7.0
77
Release: 1%{?dist}
88
Summary: Additional tools for plpgsql functions validation
99

@@ -49,6 +49,9 @@ rm -rf %{buildroot}
4949
%{pginstdir}/share/extension/*.control
5050

5151
%changelog
52+
* Wed Dec 6 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.7.0
53+
- unclosed cursors detection
54+
5255
* Tue Oct 31 2023 - Pavel Stehule <pavel.stehule@gmail.com> 2.6.0
5356
- simple constant tracing support
5457

0 commit comments

Comments
 (0)