-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from adjust/documentation-update-for-pgxn
Update META.json
- Loading branch information
Showing
3 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
{ | ||
"name": "currency", | ||
"abstract": "Enumerable currency list, stored in a single-byte, fixed-length type.", | ||
"version": "0.0.3", | ||
"maintainer": [ "Chris Travers <[email protected]>", "Manuel Kniep <[email protected]>" ], | ||
"version": "0.0.4", | ||
"maintainer" : [ | ||
"adjustgmbh" | ||
], | ||
"license": { | ||
"PostgreSQL": "http://www.postgresql.org/about/licence" | ||
}, | ||
"provides": { | ||
"currency": { | ||
"file": "sql/pg-currency.sql", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"abstract": "Enumerable currency list, stored in a single-byte, fixed-length type." | ||
} | ||
}, | ||
|
@@ -21,7 +23,7 @@ | |
"prereqs": { | ||
"runtime": { | ||
"requires": { | ||
"PostgreSQL": "9.3.0" | ||
"PostgreSQL": "10.0.0" | ||
} | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# currency extension | ||
comment = 'Custom PostgreSQL currency type' | ||
default_version = '0.0.3' | ||
default_version = '0.0.4' | ||
relocatable = true | ||
requires = 'plpgsql' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- currency 0.0.4 | ||
-- | ||
-- New version for update PGXN |