Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ RUN apt-get update \
libedit-dev \
libkrb5-dev \
liblz4-dev \
libnuma-dev \
libncurses6 \
libpam-dev \
libreadline-dev \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ BUILD_ARGS_pg14 = --build-arg PGVERSION=14 --build-arg CITUSTAG=v12.1.5
BUILD_ARGS_pg15 = --build-arg PGVERSION=15 --build-arg CITUSTAG=v12.1.5
BUILD_ARGS_pg16 = --build-arg PGVERSION=16 --build-arg CITUSTAG=$(CITUSTAG)
BUILD_ARGS_pg17 = --build-arg PGVERSION=17 --build-arg CITUSTAG=$(CITUSTAG)
BUILD_ARGS_pg18 = --build-arg PGVERSION=18 --build-arg CITUSTAG=$(CITUSTAG)
BUILD_ARGS_pg18 = --build-arg PGVERSION=18 --build-arg CITUSTAG=803f0ac

# DOCKER BUILDS

Expand Down
2 changes: 1 addition & 1 deletion src/bin/pg_autoctl/cli_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1524,7 +1524,7 @@ keeper_cli_print_version(int argc, char **argv)
"pg_autoctl extension version %s\n",
PG_AUTOCTL_EXTENSION_VERSION);
fformat(stdout, "compiled with %s\n", PG_VERSION_STR);
fformat(stdout, "compatible with Postgres 13, 14, 15, 16 and 17\n");
fformat(stdout, "compatible with Postgres 13, 14, 15, 16, 17 and 18\n");
}

exit(0);
Expand Down
Loading