]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Adapt REL_17_STABLE to its new status as a stable branch
authorMichael Paquier <michael@paquier.xyz>
Sun, 30 Jun 2024 23:05:35 +0000 (08:05 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sun, 30 Jun 2024 23:05:35 +0000 (08:05 +0900)
Per the checklist in RELEASE_CHANGES for the creation of a new stable
branch, this commit does the following things:
- Arm gen_node_support.pl's nodetag ABI stability, based on the contents
of nodetags.h.
- Update URLs of top-level README and Makefile to point to the new
stable version.

In passing, this fixes an incorrect comment in release-17.sgml.

Makefile
README.md
doc/src/sgml/release-17.sgml
src/backend/nodes/gen_node_support.pl

index 8a2ec9396b6b446362e6af3ca022a87d80bd1574..7c53ef6518413faace6e65437b87f12a10496bca 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ all:
 all check install installdirs installcheck installcheck-parallel uninstall clean distclean maintainer-clean dist distcheck world check-world install-world installcheck-world:
        @if [ ! -f GNUmakefile ] ; then \
           echo "You need to run the 'configure' program first. Please see"; \
-          echo "<https://www.postgresql.org/docs/devel/installation.html>" ; \
+          echo "<https://www.postgresql.org/docs/17/installation.html>" ; \
           false ; \
         fi
        @IFS=':' ; \
index f6104c038b3d5c69e7dc058aa4518c3cbcf56731..834ddb85c71b3d28f8df9cba89524c119b841ebd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -12,9 +12,9 @@ and functions.  This distribution also contains C language bindings.
 Copyright and license information can be found in the file COPYRIGHT.
 
 General documentation about this version of PostgreSQL can be found at
-<https://www.postgresql.org/docs/devel/>.  In particular, information
+<https://www.postgresql.org/docs/17/>.  In particular, information
 about building PostgreSQL from the source code can be found at
-<https://www.postgresql.org/docs/devel/installation.html>.
+<https://www.postgresql.org/docs/17/installation.html>.
 
 The latest version of this software, and related software, may be
 obtained at <https://www.postgresql.org/download/>.  For more information
index 1eaaad7cf7e0acff007e1e5f336bd38e36b6cb0b..bb50263ca82da5eefd5cc7e7192bf755b00f141b 100644 (file)
@@ -1,4 +1,4 @@
-<!-- doc/src/sgml/release-16.sgml -->
+<!-- doc/src/sgml/release-17.sgml -->
 <!-- See header comment in release.sgml about typical markup -->
 
  <sect1 id="release-17">
index 81df3bdf95f017c49fd5d3b63f4217e1985565aa..bdda4fbb918643f7f5b777e1afbddd7dc9eab7b7 100644 (file)
@@ -106,8 +106,8 @@ my @nodetag_only_files = qw(
 # In HEAD, these variables should be left undef, since we don't promise
 # ABI stability during development.
 
-my $last_nodetag = undef;
-my $last_nodetag_no = undef;
+my $last_nodetag = 'WindowObjectData';
+my $last_nodetag_no = 474;
 
 # output file names
 my @output_files;