Skip to content

Commit 10ee893

Browse files
committed
Adapt REL_17_STABLE to its new status as a stable branch
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.
1 parent 7dcc6f8 commit 10ee893

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ all:
2020
all check install installdirs installcheck installcheck-parallel uninstall clean distclean maintainer-clean dist distcheck world check-world install-world installcheck-world:
2121
@if [ ! -f GNUmakefile ] ; then \
2222
echo "You need to run the 'configure' program first. Please see"; \
23-
echo "<https://www.postgresql.org/docs/devel/installation.html>" ; \
23+
echo "<https://www.postgresql.org/docs/17/installation.html>" ; \
2424
false ; \
2525
fi
2626
@IFS=':' ; \

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ and functions. This distribution also contains C language bindings.
1212
Copyright and license information can be found in the file COPYRIGHT.
1313

1414
General documentation about this version of PostgreSQL can be found at
15-
<https://www.postgresql.org/docs/devel/>. In particular, information
15+
<https://www.postgresql.org/docs/17/>. In particular, information
1616
about building PostgreSQL from the source code can be found at
17-
<https://www.postgresql.org/docs/devel/installation.html>.
17+
<https://www.postgresql.org/docs/17/installation.html>.
1818

1919
The latest version of this software, and related software, may be
2020
obtained at <https://www.postgresql.org/download/>. For more information

doc/src/sgml/release-17.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- doc/src/sgml/release-16.sgml -->
1+
<!-- doc/src/sgml/release-17.sgml -->
22
<!-- See header comment in release.sgml about typical markup -->
33

44
<sect1 id="release-17">

src/backend/nodes/gen_node_support.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ sub elem
106106
# In HEAD, these variables should be left undef, since we don't promise
107107
# ABI stability during development.
108108

109-
my $last_nodetag = undef;
110-
my $last_nodetag_no = undef;
109+
my $last_nodetag = 'WindowObjectData';
110+
my $last_nodetag_no = 474;
111111

112112
# output file names
113113
my @output_files;

0 commit comments

Comments
 (0)