Skip to content

Commit 42625ec

Browse files
committed
Adapt REL_18_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.
1 parent 9c5b9a2 commit 42625ec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
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/18/installation.html>" ; \
2424
false ; \
2525
fi
2626
@IFS=':' ; \

README.md

Lines changed: 2 additions & 2 deletions
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/18/>. 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/18/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

src/backend/nodes/gen_node_support.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ sub elem
107107
# In HEAD, these variables should be left undef, since we don't promise
108108
# ABI stability during development.
109109

110-
my $last_nodetag = undef;
111-
my $last_nodetag_no = undef;
110+
my $last_nodetag = 'WindowObjectData';
111+
my $last_nodetag_no = 479;
112112

113113
# output file names
114114
my @output_files;

0 commit comments

Comments
 (0)