From f37f03148303ebf8602e4ebb7dbe33eb6e0e500c Mon Sep 17 00:00:00 2001 From: Jeremy Palmer Date: Fri, 8 Nov 2024 18:39:37 +1100 Subject: [PATCH] Release version 1.11.1 --- .github/workflows/test.yml | 10 +++++----- CHANGELOG.md | 6 ++++++ Makefile | 3 ++- debian/changelog | 6 ++++++ debian/control | 20 ++++++++++---------- debian/pgversions | 4 ++-- 6 files changed, 31 insertions(+), 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index debc53ba..dc9cf672 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -83,7 +83,7 @@ jobs: strategy: fail-fast: false matrix: - pg: ['11', '12', '13', '14'] + pg: ['12', '13', '14', '15', '16'] release: [20.04] steps: - name: Check out repository @@ -102,7 +102,7 @@ jobs: strategy: fail-fast: false matrix: - pg: ['11', '12', '13', '14'] # TODO: '15' + pg: ['12', '13', '14', '15', '16'] release: [20.04] steps: - name: Check out repository @@ -122,7 +122,7 @@ jobs: strategy: fail-fast: false matrix: - pg: ['11', '12', '13', '14'] # TODO: '15' + pg: ['12', '13', '14', '15', '16'] release: [20.04] steps: - name: Check out repository @@ -142,7 +142,7 @@ jobs: strategy: fail-fast: false matrix: - pg: ['11', '12', '13', '14'] # TODO: '15' + pg: ['12', '13', '14', '15', '16'] release: [20.04] steps: - name: Check out repository @@ -178,7 +178,7 @@ jobs: strategy: fail-fast: false matrix: - release: [20.04, 22.04] + release: [20.04, 22.04, 24.04] max-parallel: 1 steps: - name: Check out repository diff --git a/CHANGELOG.md b/CHANGELOG.md index d74fc60d..32e5e57b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes for the PostgreSQL table version extension are documented in this file. +## [1.11.1] - 2024-11-08 + +### Added + +- Added packaging support PG 12-16 and add support Ubuntu 24.04 versions + ## [1.11.0] - 2024-11-07 ### Added diff --git a/Makefile b/Makefile index c45fb46d..903c81a4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -EXTVERSION = 1.11.0 +EXTVERSION = 1.11.1 META = META.json EXTENSION = $(shell jq --raw-output .name $(META).in) @@ -20,6 +20,7 @@ DISTFILES = \ UPGRADEABLE_VERSIONS = \ 1.9.0dev 1.9.0 \ 1.10.3dev 1.10.2 \ + 1.11.0 \ $(EXTVERSION) SQLSCRIPTS_built = sql/20-version.sql diff --git a/debian/changelog b/debian/changelog index af520ec7..ddabed57 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +postgresql-tableversion (1.11.1-linz~focal) focal; urgency=medium + + * New version + + -- Jeremy Palmer Thu, 08 Nov 2024 11:23:45 +0000 + postgresql-tableversion (1.11.0-linz~focal) focal; urgency=medium * New version diff --git a/debian/control b/debian/control index 58793e6a..61fea879 100644 --- a/debian/control +++ b/debian/control @@ -9,10 +9,10 @@ Homepage: http://www.linz.govt.nz Vcs-Git: git://github.com/linz/postgresql-tableversion.git Vcs-Browser: https://github.com/linz/postgresql-tableversion -Package: postgresql-10-tableversion +Package: postgresql-12-tableversion Architecture: all Depends: ${misc:Depends}, - postgresql-10 + postgresql-12 Recommends: Description: PostgreSQL table versioning extension, recording row modifications and its history. The extension provides APIs for accessing snapshots of a table @@ -23,10 +23,10 @@ Description: PostgreSQL table versioning extension, recording row modifications This package contains the EXTENSION version of the code (requires access to server filesystem) -Package: postgresql-11-tableversion +Package: postgresql-13-tableversion Architecture: all Depends: ${misc:Depends}, - postgresql-11 + postgresql-13 Recommends: Description: PostgreSQL table versioning extension, recording row modifications and its history. The extension provides APIs for accessing snapshots of a table @@ -37,10 +37,10 @@ Description: PostgreSQL table versioning extension, recording row modifications This package contains the EXTENSION version of the code (requires access to server filesystem) -Package: postgresql-12-tableversion +Package: postgresql-14-tableversion Architecture: all Depends: ${misc:Depends}, - postgresql-12 + postgresql-14 Recommends: Description: PostgreSQL table versioning extension, recording row modifications and its history. The extension provides APIs for accessing snapshots of a table @@ -51,10 +51,10 @@ Description: PostgreSQL table versioning extension, recording row modifications This package contains the EXTENSION version of the code (requires access to server filesystem) -Package: postgresql-13-tableversion +Package: postgresql-15-tableversion Architecture: all Depends: ${misc:Depends}, - postgresql-13 + postgresql-15 Recommends: Description: PostgreSQL table versioning extension, recording row modifications and its history. The extension provides APIs for accessing snapshots of a table @@ -65,10 +65,10 @@ Description: PostgreSQL table versioning extension, recording row modifications This package contains the EXTENSION version of the code (requires access to server filesystem) -Package: postgresql-14-tableversion +Package: postgresql-16-tableversion Architecture: all Depends: ${misc:Depends}, - postgresql-14 + postgresql-16 Recommends: Description: PostgreSQL table versioning extension, recording row modifications and its history. The extension provides APIs for accessing snapshots of a table diff --git a/debian/pgversions b/debian/pgversions index ca173368..a0938b63 100644 --- a/debian/pgversions +++ b/debian/pgversions @@ -1,5 +1,5 @@ -10 -11 12 13 14 +15 +16