Everything is 3.1.0.0 now.
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;
-- ----------------------------------------------------------------------
-- 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;
-- ----------------------------------------------------------------------
-- 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;
-- ----------------------------------------------------------------------
-- 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;
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;