Skip to content

Commit

Permalink
Making this an actual update and adding missing build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Webster committed Aug 26, 2019
1 parent 96a25cd commit 1ccdf46
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions META.json
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",
Expand All @@ -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"
}
},
Expand All @@ -32,7 +32,7 @@
"web": "https://github.com/omniti-labs/pg_amqp",
"type": "git"
}
},
},

"meta-spec": {
"version": "1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ MODULE_big = $(patsubst src/%.c,%,$(wildcard src/*.c))
OBJS = src/pg_amqp.o \
src/librabbitmq/amqp_api.o src/librabbitmq/amqp_connection.o src/librabbitmq/amqp_debug.o \
src/librabbitmq/amqp_framing.o src/librabbitmq/amqp_mem.o src/librabbitmq/amqp_socket.o \
src/librabbitmq/amqp_table.o
src/librabbitmq/amqp_table.o src/librabbitmq/amqp_tcp_socket.o src/librabbitmq/amqp_time.o


all: sql/$(EXTENSION)--$(EXTVERSION).sql
Expand Down
2 changes: 1 addition & 1 deletion amqp.control
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
1 change: 1 addition & 0 deletions updates/amqp--0.4.1--0.5.0.sql
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.

0 comments on commit 1ccdf46

Please sign in to comment.