Bump version to 14.0
authorSvetlana Derevyanko <svetlo_nika@mail.ru>
Mon, 19 Jul 2021 11:27:15 +0000 (14:27 +0300)
committerChristoph Berg <myon@debian.org>
Wed, 29 Sep 2021 15:58:59 +0000 (17:58 +0200)
Makefile
README.pg_filedump
pg_filedump.c
pg_filedump.h

index 453b35d7b6243b16e028ca661551c7b89118b75e..60b2b4f7a806972e4cd0d511c573d29ff6f9b392 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=13.1
+FD_VERSION=14.0
 
 PROGRAM = pg_filedump
 OBJS = pg_filedump.o decode.o stringinfo.o
index c72f978d978ee0d8d04d9820f54d4ef698dfe6ae..3654e5a05c364955a4b8cc4a17ee26051a6e69dc 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-2020, PostgreSQL Global Development Group
+Copyright (c) 2011-2021, 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 498c6ddd5894d4f643a8e7f5d950fffcef4e50d6..ba43550679f25ab790d914f66f0c57943b8cc075 100644 (file)
@@ -3,7 +3,7 @@
  *                                formatting heap (data), index and control files.
  *
  * Copyright (c) 2002-2010 Red Hat, Inc.
- * Copyright (c) 2011-2020, PostgreSQL Global Development Group
+ * Copyright (c) 2011-2021, 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
@@ -159,7 +159,7 @@ DisplayOptions(unsigned int validOptions)
                printf
                        ("\nVersion %s (for %s)"
                         "\nCopyright (c) 2002-2010 Red Hat, Inc."
-                 "\nCopyright (c) 2011-2020, PostgreSQL Global Development Group\n",
+                 "\nCopyright (c) 2011-2021, PostgreSQL Global Development Group\n",
                         FD_VERSION, FD_PG_VERSION);
 
        printf
index eaafde1a2da0aed4e31f646886cb3c7b838226ec..91a11bf92159449b085c4510f182bf874b7a1384 100644 (file)
@@ -3,7 +3,7 @@
  *                                formatting heap (data), index and control files.
  *
  * Copyright (c) 2002-2010 Red Hat, Inc.
- * Copyright (c) 2011-2020, PostgreSQL Global Development Group
+ * Copyright (c) 2011-2021, 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 <patrickm@redhat.com>
  */
 
-#define FD_VERSION     "13.1"          /* version ID of pg_filedump */
-#define FD_PG_VERSION  "PostgreSQL 8.x .. 13.x"                /* PG version it works with */
+#define FD_VERSION     "14.0"          /* version ID of pg_filedump */
+#define FD_PG_VERSION  "PostgreSQL 8.x .. 14.x"                /* PG version it works with */
 
 #include "postgres.h"