Skip to content

Commit 2647503

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 2cc99c7 + aafc9b4 commit 2647503

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

src/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ MODULE_big = pgsentinel
1010
OBJS = $(patsubst %.c,%.o,$(wildcard ./*.c))
1111

1212
ifeq ($(CC),gcc)
13-
PG_CPPFLAGS = -std=c99 -Wall -Wextra -Wno-unused-parameter -Wno-uninitialized -Wno-implicit-fallthrough -Iinclude
13+
PG_CPPFLAGS = -std=gnu11 -Wall -Wextra -Werror -Wno-unused-parameter -Wno-uninitialized -Wno-implicit-fallthrough -Iinclude
1414
else
15-
PG_CPPFLAGS = -std=c99 -Wall -Wextra -Wno-unused-parameter -Wno-implicit-fallthrough -Iinclude
15+
PG_CPPFLAGS = -std=gnu11 -Wall -Wextra -Werror -Wno-unused-parameter -Wno-implicit-fallthrough -Iinclude
1616
endif
1717

1818
EXTRA_CLEAN += $(addprefix ./,*.gcno *.gcda)

src/pgsentinel--1.4.0--1.4.1.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* pgsentinel--1.4.0--1.4.1.sql */
2+
3+
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
4+
\echo Use "ALTER EXTENSION pgsentinel UPDATE TO '1.4.1'" to load this file. \quit

src/pgsentinel.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
comment = 'active session history'
2-
default_version = '1.4.0'
2+
default_version = '1.4.1'
33
module_pathname = '$libdir/pgsentinel'
44
relocatable = true

0 commit comments

Comments
 (0)