Skip to content

Commit

Permalink
Version 1.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
theirix committed Mar 19, 2024
1 parent a087eb9 commit 4792bf5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for PostgreSQL extension.

1.3.9 2024-03-19T103000
- Support building with clang on Debian 12

1.3.8 2023-04-16T103000
- Support PostgreSQL 16

Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "parray_gin",
"abstract": "GIN partial array match",
"description": "Extension parray_gin provides GIN index and operator support for arrays with partial match.",
"version": "1.3.8",
"version": "1.3.9",
"maintainer": [
"Eugene Seliverstov <[email protected]>"
],
Expand All @@ -11,7 +11,7 @@
"parray_gin": {
"file": "sql/parray_gin.sql",
"docfile": "doc/parray_gin.md",
"version": "1.3.8"
"version": "1.3.9"
}
},
"prereqs": {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
EXTENSION = parray_gin
EXTVERSION = 1.3.8
EXTVERSION = 1.3.9
MODULE_big = $(EXTENSION)
OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
DOCS = $(wildcard doc/*.md)
Expand Down
2 changes: 1 addition & 1 deletion parray_gin.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# parray_gin extension
comment = 'PostgreSQL GIN support for arrays with partial match'
default_version = '1.3.8'
default_version = '1.3.9'
module_pathname = '$libdir/parray_gin'
relocatable = true
3 changes: 3 additions & 0 deletions sql/parray_gin--1.3.8--1.3.9.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
\echo Use "ALTER EXTENSION parray_gin UPDATE " to load this file. \quit

0 comments on commit 4792bf5

Please sign in to comment.