From 3d24247112aca75ab07e16749d7a032bfde6a39e Mon Sep 17 00:00:00 2001 From: Guillaume HUSTA Date: Tue, 13 Feb 2024 10:06:58 +0100 Subject: [PATCH] Upgrade to PostgreSQL 16.2 Closes: #59 --- .github/workflows/docker-publish-on-tag.yml | 2 +- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish-on-tag.yml b/.github/workflows/docker-publish-on-tag.yml index 262cf4d..fd5be7e 100644 --- a/.github/workflows/docker-publish-on-tag.yml +++ b/.github/workflows/docker-publish-on-tag.yml @@ -8,7 +8,7 @@ on: env: IMAGE_NAME: ghusta/postgres-world-db ENABLE_QEMU: 1 - POSTGRES_VERSION: 16.1 + POSTGRES_VERSION: 16.2 BUILD_PUSH_ALPINE: 0 jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b632ce..e213745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.11.2 (2024-02-13) +Upgrade to PostgreSQL 16.2. +See https://www.postgresql.org/about/news/postgresql-162-156-1411-1314-and-1218-released-2807/ + ## 2.11.1 (2023-11-14) Upgrade to PostgreSQL 16.1. See https://www.postgresql.org/about/news/postgresql-161-155-1410-1313-1217-and-1122-released-2749/ diff --git a/Dockerfile b/Dockerfile index c8d1a11..7eafd61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Init Example Database World on PostgreSQL -ARG POSTGRES_TAG=16.1 +ARG POSTGRES_TAG=16.2 FROM postgres:$POSTGRES_TAG ENV POSTGRES_USER world