Bump schema versions.
authorMarko Kreen <markokr@gmail.com>
Thu, 19 Jul 2012 08:30:02 +0000 (11:30 +0300)
committerMarko Kreen <markokr@gmail.com>
Thu, 19 Jul 2012 08:30:21 +0000 (11:30 +0300)
Everything is 3.1.0.0 now.

sql/londiste/functions/londiste.version.sql
sql/pgq/functions/pgq.version.sql
sql/pgq_coop/functions/pgq_coop.version.sql
sql/pgq_ext/functions/pgq_ext.version.sql
sql/pgq_node/functions/pgq_node.version.sql

index 739e1e39b48c38cda24e6e94e9de0730281e3e9b..d9d12f39e4ec83789a9caf398bf6b31ffa68037c 100644 (file)
@@ -1,8 +1,14 @@
 
 create or replace function londiste.version()
 returns text as $$
+-- ----------------------------------------------------------------------
+-- Function: londiste.version(0)
+--
+--      Returns version string for londiste.  ATM it is based on SkyTools version
+--      and only bumped when database code changes.
+-- ----------------------------------------------------------------------
 begin
-    return '3.0.0.16';
+    return '3.1.0.0';
 end;
 $$ language plpgsql;
 
index 1508ff581bd4b5d651c11fb07b5629ce0ce52fc1..d8baec482d60871a2c9b8af561f06f3b2f063640 100644 (file)
@@ -3,11 +3,11 @@ returns text as $$
 -- ----------------------------------------------------------------------
 -- Function: pgq.version(0)
 --
---      Returns verison string for pgq.  ATM its SkyTools version
---      that is only bumped when PGQ database code changes.
+--      Returns version string for pgq.  ATM it is based on SkyTools version
+--      and only bumped when database code changes.
 -- ----------------------------------------------------------------------
 begin
-    return '3.0.0.15';
+    return '3.1.0.0';
 end;
 $$ language plpgsql;
 
index 3ab14d057a769535d731eb872a1426564e27a67c..aab49258deaae002d8b0c26dbf3f2035d3201873 100644 (file)
@@ -4,11 +4,11 @@ returns text as $$
 -- ----------------------------------------------------------------------
 -- Function: pgq_coop.version(0)
 --
---      Returns version string for pgq_coop.  ATM its SkyTools version
---      with suffix that is only bumped when pgq_coop database code changes.
+--      Returns version string for pgq_coop.  ATM it is based on SkyTools version
+--      and only bumped when database code changes.
 -- ----------------------------------------------------------------------
 begin
-    return '3.0.0.4';
+    return '3.1.0.0';
 end;
 $$ language plpgsql;
 
index 092dee59f56fc25431eee48188ba810fea1f6f3a..d3da90a352a68e5f160b80c05115e5daacd73e5c 100644 (file)
@@ -4,11 +4,11 @@ returns text as $$
 -- ----------------------------------------------------------------------
 -- Function: pgq_ext.version(0)
 --
---      Returns version string for pgq_ext.  ATM its SkyTools version
---      with suffix that is only bumped when pgq_ext database code changes.
+--      Returns version string for pgq_ext.  ATM it is based SkyTools version
+--      only bumped when database code changes.
 -- ----------------------------------------------------------------------
 begin
-    return '3.0.0.3';
+    return '3.1.0.0';
 end;
 $$ language plpgsql;
 
index 44ff7e5358ab68cea7763499e4724fe15ad79405..3985250caf97f41141354867282163d9ef322496 100644 (file)
@@ -1,8 +1,14 @@
 
 create or replace function pgq_node.version()
 returns text as $$
+-- ----------------------------------------------------------------------
+-- Function: pgq_node.version(0)
+--
+--      Returns version string for pgq_node.  ATM it is based on SkyTools version
+--      and only bumped when database code changes.
+-- ----------------------------------------------------------------------
 begin
-    return '3.0.0.18';
+    return '3.1.0.0';
 end;
 $$ language plpgsql;