forked from omniti-labs/pg_amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.4.1 Clarify commit warning messages. See CHANGELOG for more info a…
…nd the extension update file for how to install
- Loading branch information
Showing
5 changed files
with
13 additions
and
6 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
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,7 +1,7 @@ | ||
{ | ||
"name": "pg_amqp", | ||
"abstract": "AMQP protocol support for PostgreSQL", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"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]" ] | ||
|
@@ -17,9 +17,9 @@ | |
}, | ||
"provides": { | ||
"amqp": { | ||
"file": "sql/amqp--0.4.0.sql", | ||
"file": "sql/amqp--0.4.1.sql", | ||
"docfile": "doc/amqp.md", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"abstract": "AMQP protocol support for PostgreSQL" | ||
} | ||
}, | ||
|
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.0' | ||
default_version = '0.4.1' | ||
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
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 @@ | ||
-- 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 bug fix. You must also still run "ALTER EXTENSION pg_ampq UPDATE' to update the extension version number in the database. | ||
|
||
-- Clarify commit/rollback warning messages (Github Pull Request #15) |