Skip to content

Commit

Permalink
Make release 1.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkhipov committed Sep 24, 2023
1 parent 0c1e5a1 commit 144959a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
Expand All @@ -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": {
Expand All @@ -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",
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Empty file added acl--1.0.3--1.0.4.sql
Empty file.
2 changes: 1 addition & 1 deletion acl--1.0.3.sql → acl--1.0.4.sql
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion acl.control
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 144959a

Please sign in to comment.