Bump version to 13.1 REL_13_1
authorChristoph Berg <[email protected]>
Mon, 2 Nov 2020 15:47:55 +0000 (16:47 +0100)
committerChristoph Berg <[email protected]>
Mon, 2 Nov 2020 15:49:40 +0000 (16:49 +0100)
pg_filedump is compatible with everything from PG 8.x up, say so in the
version string.

Makefile
README.pg_filedump
pg_filedump.c
pg_filedump.h

index 6fff019e9ef94389bc182015b92825d6e07ba030..e189f5788ee7818913559b013f1b1cb40a805b21 100644 (file)
--- 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
index 82c6664824f83d742c22ea850fd7f9373a6ad28e..59b1e63c3eeaeb07bd49a33a2be76abec21e9942 100644 (file)
@@ -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
index 2cd5c6dfdda7ba4c138ae5e289a3cd0b7976948d..f3650da63143a8b1cd5dcf811be36fdd303d33f1 100644 (file)
@@ -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
index e74b989f8a2dadeb43c4d520bb741528098da4ef..fbb87924409d1aa31a3dd2410d350b6e7ad705dc 100644 (file)
@@ -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 <[email protected]>
  */
 
-#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"