]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Adapt REL_18_STABLE to its new status as a stable branch
authorJoe Conway <mail@joeconway.com>
Mon, 30 Jun 2025 03:00:00 +0000 (23:00 -0400)
committerJoe Conway <mail@joeconway.com>
Mon, 30 Jun 2025 03:00:00 +0000 (23:00 -0400)
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.

Makefile
README.md
src/backend/nodes/gen_node_support.pl

index 8a2ec9396b6b446362e6af3ca022a87d80bd1574..b363b2f24766b2a4873bf4f44e5935ecd7cfad0b 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/18/installation.html>" ; \
           false ; \
         fi
        @IFS=':' ; \
index f6104c038b3d5c69e7dc058aa4518c3cbcf56731..7352a90a72373d62c469defba3f62185673f5894 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/18/>.  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/18/installation.html>.
 
 The latest version of this software, and related software, may be
 obtained at <https://www.postgresql.org/download/>.  For more information
index 9ecddb1423143717ad006ca79c472e85914df407..214d2c70d60db5dfebb8d0dd6f9c0cde2a8325da 100644 (file)
@@ -107,8 +107,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 = 479;
 
 # output file names
 my @output_files;