Skip to content

Commit

Permalink
dump key id sequence, update test to 3.1.6 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelp authored Apr 3, 2023
1 parent 99d5f22 commit c443019
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
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": "pgsodium",
"abstract": "Postgres extension for libsodium functions",
"description": "pgsodium is a PostgreSQL extension that exposes modern libsodium based cryptographic functions to SQL.",
"version": "3.1.5",
"version": "3.1.6",
"maintainer": [
"Michel Pelletier <[email protected]>"
],
Expand All @@ -13,7 +13,7 @@
"abstract": "Postgres extension for libsodium functions",
"file": "src/pgsodium.h",
"docfile": "README.md",
"version": "3.1.5"
"version": "3.1.6"
}
},
"prereqs": {
Expand Down
2 changes: 1 addition & 1 deletion pgsodium.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pgsodium extension
comment = 'Postgres extension for libsodium functions'
default_version = '3.1.5'
default_version = '3.1.6'
relocatable = false
schema = pgsodium
2 changes: 2 additions & 0 deletions sql/pgsodium--3.1.5--3.1.6.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

SELECT pg_catalog.pg_extension_config_dump('pgsodium.key_key_id_seq', '');
2 changes: 1 addition & 1 deletion test/pgsodium_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SELECT plan(1748);


---- EXTENSION VERSION
SELECT results_eq('SELECT pgsodium.version()', $$VALUES ('3.1.5'::text)$$, 'Version of pgsodium is 3.1.5');
SELECT results_eq('SELECT pgsodium.version()', $$VALUES ('3.1.6'::text)$$, 'Version of pgsodium is 3.1.6');


---- EXTENSION OBJECTS
Expand Down

0 comments on commit c443019

Please sign in to comment.