From: Christoph Berg Date: Mon, 2 Nov 2020 15:47:55 +0000 (+0100) Subject: Bump version to 13.1 X-Git-Tag: REL_13_1^0 X-Git-Url: http://git.postgresql.org/gitweb/static/We?a=commitdiff_plain;h=f15f684d38d8bdb8abe2175d05d3b6738d09b15b;p=pg_filedump.git Bump version to 13.1 pg_filedump is compatible with everything from PG 8.x up, say so in the version string. --- diff --git a/Makefile b/Makefile index 6fff019..e189f57 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # View README.pg_filedump first # note this must match version macros in pg_filedump.h -FD_VERSION=12.0 +FD_VERSION=13.1 PROGRAM = pg_filedump OBJS = pg_filedump.o decode.o stringinfo.o diff --git a/README.pg_filedump b/README.pg_filedump index 82c6664..59b1e63 100644 --- a/README.pg_filedump +++ b/README.pg_filedump @@ -2,7 +2,7 @@ pg_filedump - Display formatted contents of a PostgreSQL heap, index, or control file. Copyright (c) 2002-2010 Red Hat, Inc. -Copyright (c) 2011-2019, PostgreSQL Global Development Group +Copyright (c) 2011-2020, PostgreSQL Global Development Group This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/pg_filedump.c b/pg_filedump.c index 2cd5c6d..f3650da 100644 --- a/pg_filedump.c +++ b/pg_filedump.c @@ -3,7 +3,7 @@ * formatting heap (data), index and control files. * * Copyright (c) 2002-2010 Red Hat, Inc. - * Copyright (c) 2011-2019, PostgreSQL Global Development Group + * Copyright (c) 2011-2020, PostgreSQL Global Development Group * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -137,7 +137,7 @@ DisplayOptions(unsigned int validOptions) printf ("\nVersion %s (for %s)" "\nCopyright (c) 2002-2010 Red Hat, Inc." - "\nCopyright (c) 2011-2019, PostgreSQL Global Development Group\n", + "\nCopyright (c) 2011-2020, PostgreSQL Global Development Group\n", FD_VERSION, FD_PG_VERSION); printf diff --git a/pg_filedump.h b/pg_filedump.h index e74b989..fbb8792 100644 --- a/pg_filedump.h +++ b/pg_filedump.h @@ -3,7 +3,7 @@ * formatting heap (data), index and control files. * * Copyright (c) 2002-2010 Red Hat, Inc. - * Copyright (c) 2011-2019, PostgreSQL Global Development Group + * Copyright (c) 2011-2020, PostgreSQL Global Development Group * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,8 +22,8 @@ * Original Author: Patrick Macdonald */ -#define FD_VERSION "12.0" /* version ID of pg_filedump */ -#define FD_PG_VERSION "PostgreSQL 12.x" /* PG version it works with */ +#define FD_VERSION "13.1" /* version ID of pg_filedump */ +#define FD_PG_VERSION "PostgreSQL 8.x .. 13.x" /* PG version it works with */ #include "postgres.h"