aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2024-07-01 07:56:10 +0900
committerMichael Paquier <michael@paquier.xyz>2024-07-01 07:56:10 +0900
commite26810d01d441a457217a6eae9c2989fba29b80f (patch)
tree68f2145a09025d72037bdfc8b05e57adb8f8bdd3 /src
parent7dcc6f8e6d7a0eb0ce90802311278723843b4bbd (diff)
downloadpostgresql-e26810d01d441a457217a6eae9c2989fba29b80f.tar.gz
postgresql-e26810d01d441a457217a6eae9c2989fba29b80f.zip
Stamp HEAD as 18devel.
Let the hacking begin ...
Diffstat (limited to 'src')
-rwxr-xr-xsrc/tools/git_changelog2
-rwxr-xr-xsrc/tools/version_stamp.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/git_changelog b/src/tools/git_changelog
index c9469b8bad1..bfd17718bc7 100755
--- a/src/tools/git_changelog
+++ b/src/tools/git_changelog
@@ -59,7 +59,7 @@ require IPC::Open2;
# (We could get this from "git branches", but not worth the trouble.)
# NB: master must be first!
my @BRANCHES = qw(master
- REL_16_STABLE REL_15_STABLE REL_14_STABLE REL_13_STABLE
+ REL_17_STABLE REL_16_STABLE REL_15_STABLE REL_14_STABLE REL_13_STABLE
REL_12_STABLE REL_11_STABLE REL_10_STABLE REL9_6_STABLE REL9_5_STABLE
REL9_4_STABLE REL9_3_STABLE REL9_2_STABLE REL9_1_STABLE REL9_0_STABLE
REL8_4_STABLE REL8_3_STABLE REL8_2_STABLE REL8_1_STABLE REL8_0_STABLE
diff --git a/src/tools/version_stamp.pl b/src/tools/version_stamp.pl
index 6f94aa02c02..3743ece2996 100755
--- a/src/tools/version_stamp.pl
+++ b/src/tools/version_stamp.pl
@@ -25,7 +25,7 @@ use warnings FATAL => 'all';
# Major version is hard-wired into the script. We update it when we branch
# a new development version.
-my $majorversion = 17;
+my $majorversion = 18;
# Validate argument and compute derived variables
my $minor = shift;