-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making this an actual update and adding missing build targets
- Loading branch information
Patrick Webster
committed
Aug 26, 2019
1 parent
96a25cd
commit 1ccdf46
Showing
4 changed files
with
8 additions
and
7 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,10 +1,10 @@ | ||
{ | ||
"name": "pg_amqp", | ||
"abstract": "AMQP protocol support for PostgreSQL", | ||
"version": "0.4.2", | ||
"version": "0.5.0", | ||
"description": "The pg_amqp package provides the ability for postgres statements to directly publish messages to an AMQP broker.", | ||
"maintainer": | ||
[ "Theo Schlossnagle <[email protected]>", "Keith Fiske <[email protected]" ] | ||
"maintainer": | ||
[ "Theo Schlossnagle <[email protected]>", "Keith Fiske <[email protected]" ] | ||
"license": [ "bsd", "mozilla_1_0" ], | ||
"generated_by": "Keith Fiske", | ||
"status": "stable", | ||
|
@@ -19,7 +19,7 @@ | |
"amqp": { | ||
"file": "sql/amqp--0.4.1.sql", | ||
"docfile": "doc/amqp.md", | ||
"version": "0.4.1", | ||
"version": "0.5.0", | ||
"abstract": "AMQP protocol support for PostgreSQL" | ||
} | ||
}, | ||
|
@@ -32,7 +32,7 @@ | |
"web": "https://github.com/omniti-labs/pg_amqp", | ||
"type": "git" | ||
} | ||
}, | ||
}, | ||
|
||
"meta-spec": { | ||
"version": "1.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
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,6 +1,6 @@ | ||
# amqp extension | ||
comment = 'AMQP protocol support for PostgreSQL' | ||
default_version = '0.4.2' | ||
default_version = '0.5.0' | ||
module_pathname = '$libdir/pg_amqp' | ||
relocatable = false | ||
schema = amqp |
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 @@ | ||
-- NOTE: No changes to sql extension code contained in this update. Only C code has been patched, so a "make install" must be run to apply the library updates. You must also still run "ALTER EXTENSION amqp UPDATE' to update the extension version number in the database. |