Skip to content

Commit

Permalink
Release version 1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
palmerj committed Nov 8, 2024
1 parent e349b65 commit f37f031
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
EXTVERSION = 1.11.0
EXTVERSION = 1.11.1

META = META.json
EXTENSION = $(shell jq --raw-output .name $(META).in)
Expand All @@ -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
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
postgresql-tableversion (1.11.1-linz~focal) focal; urgency=medium

* New version

-- Jeremy Palmer <[email protected]> Thu, 08 Nov 2024 11:23:45 +0000

postgresql-tableversion (1.11.0-linz~focal) focal; urgency=medium

* New version
Expand Down
20 changes: 10 additions & 10 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions debian/pgversions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
10
11
12
13
14
15
16

0 comments on commit f37f031

Please sign in to comment.