Skip to content

Commit

Permalink
prepare 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
c2main committed Jan 8, 2024
1 parent 0d4d568 commit 4c22efb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
- 12
- 11
- 10
- 9.6
- 9.5
name: 🐘 PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
Expand All @@ -27,4 +25,4 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v4
- name: Test on PostgreSQL ${{ matrix.pg }}
run: pg-build-test
run: pg-build-test
13 changes: 12 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
00/00/2024 Cédric Villemain <[email protected]>
* 1.4.0 - Rework sql install/upgrade
- Add function pg_page_size()
- Add function pg_segment_size()
- Add function vm_available_pages()
- Add function vm_page_size()
- Add function vm_physical_pages()

21/09/2023 Cédric Villemain <[email protected]>
* 1.3.1 - drop support for upgrading from "unpackaged"

21/09/2023 Cédric Villemain <[email protected]>
* 1.3 - added support for PostgreSQL 16
- drop support for PostgreSQL < 9.4
2019-10-29 Cédric Villemain <[email protected]>

29/10/2019 Cédric Villemain <[email protected]>
* 1.2.2 - Fix bad errno usage

22/09/2017 Cédric Villemain <[email protected]>
* 1.2.1 - Fix check on NULL input for drawer function

Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ MODULES = $(EXTENSION)
MODULEDIR = $(EXTENSION)
DOCS = README.md
DATA = pgfincore--1.2.sql \
pgfincore--1.2--1.3.1.sql
pgfincore--1.2--1.3.1.sql \
pgfincore--1.3.1--1.4.0.sql

REGRESS = $(EXTENSION)

Expand All @@ -13,7 +14,7 @@ PGXS := $(shell $(PG_CONFIG) --pgxs)

include $(PGXS)

EXTVERSION = 1.3.1
EXTVERSION = 1.4.0
dist:
git archive --prefix=$(EXTENSION)-$(EXTVERSION)/ -o ../$(EXTENSION)_$(EXTVERSION).orig.tar.gz HEAD

Expand Down
2 changes: 1 addition & 1 deletion pgfincore.control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pgfincore extension
comment = 'examine and manage the os buffer cache'
default_version = '1.3.1'
default_version = '1.4.0'
module_pathname = '$libdir/pgfincore'
directory = pgfincore
relocatable = true

0 comments on commit 4c22efb

Please sign in to comment.