diff --git a/CHANGELOG b/CHANGELOG index 9cdfba8..0080e2b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,3 +10,6 @@ Version 1.0.2, released 2016-06-12 Version 1.0.3, released 2023-03-30 - fixed bug in acl_extract_arguments with implicit_allow argument value ignored - support for PostgreSQL 10+ + +Version 1.0.4, released 2023-09-24 + - support for PostgreSQL 16 diff --git a/META.json b/META.json index a16fc27..12e12d0 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "acl", "abstract": "Acess Control List (ACL) Extension", "description": "This extension provides support for ACL type.", - "version": "1.0.3", + "version": "1.0.4", "release_status": "stable", "maintainer": [ "Vladislav Arkhipov " @@ -11,9 +11,9 @@ "provides": { "acl": { "abstract": "Access Control List (ACL) Extension", - "file": "acl--1.0.3.sql", + "file": "acl--1.0.4.sql", "docfile": "acl.md", - "version": "1.0.3" + "version": "1.0.4" } }, "prereqs": { @@ -24,7 +24,7 @@ } }, "resources": { - "homepage": "http://www.softus.org", + "homepage": "https://arkhipov.ru", "repository": { "url": "https://github.com/arkhipov/acl.git", "web": "https://github.com/arkhipov/acl", diff --git a/Makefile b/Makefile index a4640c4..20db18e 100644 --- a/Makefile +++ b/Makefile @@ -6,10 +6,11 @@ OBJS = acl.o acl_oid.o acl_uuid.o acl_int8.o acl_int4.o util.o PG_CPPFLAGS=-Wall EXTENSION = acl -DATA = acl--1.0.3.sql \ +DATA = acl--1.0.4.sql \ acl--1.0.0--1.0.1.sql \ acl--1.0.1--1.0.2.sql \ - acl--1.0.2--1.0.3.sql + acl--1.0.2--1.0.3.sql \ + acl--1.0.3--1.0.4.sql DOCS = acl.md PG_CONFIG = pg_config diff --git a/acl--1.0.3--1.0.4.sql b/acl--1.0.3--1.0.4.sql new file mode 100644 index 0000000..e69de29 diff --git a/acl--1.0.3.sql b/acl--1.0.4.sql similarity index 99% rename from acl--1.0.3.sql rename to acl--1.0.4.sql index dcd4040..d9c0a6b 100644 --- a/acl--1.0.3.sql +++ b/acl--1.0.4.sql @@ -1,4 +1,4 @@ -/* acl/acl--1.0.3.sql */ +/* acl/acl--1.0.4.sql */ -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION acl" to load this file.\quit diff --git a/acl.control b/acl.control index 618b9e8..c76f514 100644 --- a/acl.control +++ b/acl.control @@ -1,5 +1,5 @@ # ACL extension comment = 'data type ACL' -default_version = '1.0.3' +default_version = '1.0.4' module_pathname = '$libdir/acl' relocatable = true