diff --git a/META.json b/META.json index 1a384b1..2691a9f 100644 --- a/META.json +++ b/META.json @@ -3,7 +3,10 @@ "abstract": "PostgreSQL module for data reorganization", "description": "pg_repack is a PostgreSQL module allowing to reorganize a table without any locks.", "version": "1.2dev0", - "maintainer": "Takahiro Itagaki", + "maintainer": [ + "Josh Kupershmidt ", + "Daniele Varrazzo " + ], "tags": [ "bloat", "maintenance", "vacuum", "cluster" ], "release_status": "stable", "license": "bsd", @@ -17,14 +20,14 @@ "prereqs": { "runtime": { "requires": { - "PostgreSQL": "8.2.0" + "PostgreSQL": "8.3.0" } } }, "resources": { - "homepage": "http://repack.projects.postgresql.org/", + "homepage": "https://github.com/reorg/pg_repack", "bugtracker": { - "web": "http://pgfoundry.org/tracker/?atid=1376&group_id=1000411&func=browse" + "web": "https://github.com/reorg/pg_reorg/issues" } }, "meta-spec": { diff --git a/bin/pg_repack.c b/bin/pg_repack.c index 797d5b5..bb3c644 100755 --- a/bin/pg_repack.c +++ b/bin/pg_repack.c @@ -10,8 +10,8 @@ */ const char *PROGRAM_VERSION = "1.1.7"; -const char *PROGRAM_URL = "http://repack.projects.postgresql.org/"; -const char *PROGRAM_EMAIL = "repack-general@lists.pgfoundry.org"; +const char *PROGRAM_URL = "https://github.com/reorg/pg_reorg"; +const char *PROGRAM_EMAIL = "reorg-general@lists.pgfoundry.org"; #include "pgut/pgut-fe.h"