summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartinko2014-10-06 14:26:09 +0000
committermartinko2014-10-06 14:26:09 +0000
commit0a565304281ceacf4026bd4f4048b50489a2df5c (patch)
tree7611086cac85ec71474831c6594a5256fcdfa714
parent35004173c7f9606fee4dabf4b98140e9fab03b9b (diff)
bumping up schemata's versions in preparation for upcoming release
-rw-r--r--sql/londiste/Makefile4
-rw-r--r--sql/londiste/functions/londiste.version.sql2
-rw-r--r--sql/londiste/londiste.control2
-rw-r--r--sql/pgq/Makefile4
-rw-r--r--sql/pgq/functions/pgq.version.sql2
-rw-r--r--sql/pgq/pgq.control2
6 files changed, 8 insertions, 8 deletions
diff --git a/sql/londiste/Makefile b/sql/londiste/Makefile
index 07b8d2f5..e89b0dc4 100644
--- a/sql/londiste/Makefile
+++ b/sql/londiste/Makefile
@@ -1,8 +1,8 @@
EXTENSION = londiste
-EXT_VERSION = 3.2
-EXT_OLD_VERSIONS = 3.1 3.1.1 3.1.3 3.1.4 3.1.6
+EXT_VERSION = 3.2.3
+EXT_OLD_VERSIONS = 3.1 3.1.1 3.1.3 3.1.4 3.1.6 3.2
base_regress = londiste_provider londiste_subscriber \
londiste_fkeys londiste_execute londiste_seqs londiste_merge \
diff --git a/sql/londiste/functions/londiste.version.sql b/sql/londiste/functions/londiste.version.sql
index 3025d48e..01cedf5a 100644
--- a/sql/londiste/functions/londiste.version.sql
+++ b/sql/londiste/functions/londiste.version.sql
@@ -8,7 +8,7 @@ returns text as $$
-- version and only bumped when database code changes.
-- ----------------------------------------------------------------------
begin
- return '3.2';
+ return '3.2.3';
end;
$$ language plpgsql;
diff --git a/sql/londiste/londiste.control b/sql/londiste/londiste.control
index 40afe77c..a23e5dd9 100644
--- a/sql/londiste/londiste.control
+++ b/sql/londiste/londiste.control
@@ -1,6 +1,6 @@
# Londiste extensions
comment = 'Londiste Replication'
-default_version = '3.2'
+default_version = '3.2.3'
relocatable = false
superuser = true
schema = 'pg_catalog'
diff --git a/sql/pgq/Makefile b/sql/pgq/Makefile
index 2492271c..19371d25 100644
--- a/sql/pgq/Makefile
+++ b/sql/pgq/Makefile
@@ -1,8 +1,8 @@
EXTENSION = pgq
-EXT_VERSION = 3.2
-EXT_OLD_VERSIONS = 3.1 3.1.1 3.1.2 3.1.3 3.1.6
+EXT_VERSION = 3.2.3
+EXT_OLD_VERSIONS = 3.1 3.1.1 3.1.2 3.1.3 3.1.6 3.2
DOCS = README.pgq
diff --git a/sql/pgq/functions/pgq.version.sql b/sql/pgq/functions/pgq.version.sql
index 0645a92d..4160245c 100644
--- a/sql/pgq/functions/pgq.version.sql
+++ b/sql/pgq/functions/pgq.version.sql
@@ -7,7 +7,7 @@ returns text as $$
-- version and only bumped when database code changes.
-- ----------------------------------------------------------------------
begin
- return '3.2';
+ return '3.2.3';
end;
$$ language plpgsql;
diff --git a/sql/pgq/pgq.control b/sql/pgq/pgq.control
index 5e934a1f..acc51cae 100644
--- a/sql/pgq/pgq.control
+++ b/sql/pgq/pgq.control
@@ -1,6 +1,6 @@
# pgq extension
comment = 'Generic queue for PostgreSQL'
-default_version = '3.2'
+default_version = '3.2.3'
relocatable = false
superuser = true
schema = 'pg_catalog'