1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-15 01:04:37 +02:00

Finalize catalog number for PostgreSQL 16 release.

This commit is contained in:
David Steele
2023-09-14 18:41:36 -04:00
parent 1b4e0cce5f
commit 657c1a3e06
5 changed files with 6 additions and 7 deletions

View File

@ -15,5 +15,4 @@ version:
- 13 - 13
- 14 - 14
- 15 - 15
- 16: - 16
release: false

View File

@ -169,7 +169,7 @@ Types from src/include/catalog/catversion.h
*/ */
/* yyyymmddN */ /* yyyymmddN */
#define CATALOG_VERSION_NO 202304110 #define CATALOG_VERSION_NO 202307071
#elif PG_VERSION >= PG_VERSION_15 #elif PG_VERSION >= PG_VERSION_15

View File

@ -12,9 +12,9 @@
# - docker login -u pgbackrest # - docker login -u pgbackrest
# - VM=XXX;DATE=YYYYMMDDX;BASE=pgbackrest/test:${VM?}-base;docker tag ${BASE?} ${BASE?}-${DATE?} && docker push ${BASE?}-${DATE?} # - VM=XXX;DATE=YYYYMMDDX;BASE=pgbackrest/test:${VM?}-base;docker tag ${BASE?} ${BASE?}-${DATE?} && docker push ${BASE?}-${DATE?}
# ********************************************************************************************************************************** # **********************************************************************************************************************************
20230831A: 20230914A:
x86_64: x86_64:
u22: abc4c03323e07525917eb9d36a9a5a228bce5dcd u22: 82f81ccd261d9b83066cd59da44ada3f328403ab
20230622A: 20230622A:
x86_64: x86_64:

View File

@ -509,7 +509,7 @@ sub containerBuild
{ {
$strScript .= $strScript .=
" echo \"deb http://apt.postgresql.org/pub/repos/apt/ \$(lsb_release -s -c)-pgdg main" . " echo \"deb http://apt.postgresql.org/pub/repos/apt/ \$(lsb_release -s -c)-pgdg main" .
($strOS eq VM_U22 ? ' 16' : '') . "\" >> /etc/apt/sources.list.d/pgdg.list && \\\n" . "\" >> /etc/apt/sources.list.d/pgdg.list && \\\n" .
" wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \\\n" . " wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \\\n" .
" apt-get update && \\\n" . " apt-get update && \\\n" .
" apt-get install -y --no-install-recommends postgresql-common libpq-dev && \\\n" . " apt-get install -y --no-install-recommends postgresql-common libpq-dev && \\\n" .

View File

@ -260,7 +260,7 @@ sub dbCatalogVersion
&PG_VERSION_13 => 202007201, &PG_VERSION_13 => 202007201,
&PG_VERSION_14 => 202105121, &PG_VERSION_14 => 202105121,
&PG_VERSION_15 => 202209061, &PG_VERSION_15 => 202209061,
&PG_VERSION_16 => 202304110, &PG_VERSION_16 => 202307071,
}; };
if (!defined($hCatalogVersion->{$strPgVersion})) if (!defined($hCatalogVersion->{$strPgVersion}))