Skip to content

Commit 1ccdf46

Browse files
author
Patrick Webster
committed
Making this an actual update and adding missing build targets
1 parent 96a25cd commit 1ccdf46

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

META.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "pg_amqp",
33
"abstract": "AMQP protocol support for PostgreSQL",
4-
"version": "0.4.2",
4+
"version": "0.5.0",
55
"description": "The pg_amqp package provides the ability for postgres statements to directly publish messages to an AMQP broker.",
6-
"maintainer":
7-
[ "Theo Schlossnagle <[email protected]>", "Keith Fiske <[email protected]" ]
6+
"maintainer":
7+
[ "Theo Schlossnagle <[email protected]>", "Keith Fiske <[email protected]" ]
88
"license": [ "bsd", "mozilla_1_0" ],
99
"generated_by": "Keith Fiske",
1010
"status": "stable",
@@ -19,7 +19,7 @@
1919
"amqp": {
2020
"file": "sql/amqp--0.4.1.sql",
2121
"docfile": "doc/amqp.md",
22-
"version": "0.4.1",
22+
"version": "0.5.0",
2323
"abstract": "AMQP protocol support for PostgreSQL"
2424
}
2525
},
@@ -32,7 +32,7 @@
3232
"web": "https://github.com/omniti-labs/pg_amqp",
3333
"type": "git"
3434
}
35-
},
35+
},
3636

3737
"meta-spec": {
3838
"version": "1.0.0",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ MODULE_big = $(patsubst src/%.c,%,$(wildcard src/*.c))
1616
OBJS = src/pg_amqp.o \
1717
src/librabbitmq/amqp_api.o src/librabbitmq/amqp_connection.o src/librabbitmq/amqp_debug.o \
1818
src/librabbitmq/amqp_framing.o src/librabbitmq/amqp_mem.o src/librabbitmq/amqp_socket.o \
19-
src/librabbitmq/amqp_table.o
19+
src/librabbitmq/amqp_table.o src/librabbitmq/amqp_tcp_socket.o src/librabbitmq/amqp_time.o
2020

2121

2222
all: sql/$(EXTENSION)--$(EXTVERSION).sql

amqp.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# amqp extension
22
comment = 'AMQP protocol support for PostgreSQL'
3-
default_version = '0.4.2'
3+
default_version = '0.5.0'
44
module_pathname = '$libdir/pg_amqp'
55
relocatable = false
66
schema = amqp

updates/amqp--0.4.1--0.5.0.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
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 commit comments

Comments
 (0)