Create a script to handle stamping release version numbers into files,
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 10 Jun 2008 18:08:55 +0000 (18:08 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 10 Jun 2008 18:08:55 +0000 (18:08 +0000)
replacing the tedious and error-prone manual process we've been using.

src/tools/RELEASE_CHANGES
src/tools/version_stamp.pl

index c19761a36c4e5c3c2594e2bf3a4c8bc2ebf06713..b91773ee05d034a8456911cb5fbd76083aaf58d2 100644 (file)
@@ -2,16 +2,9 @@ For All Releases (major, minor, beta, RC)
 ================
 
 * Release version number changes
-       o doc/bug.template (beta)
-       o bump Win32 interface version numbers
-               - src/include/pg_config.h.win32 
-                 (string and integer versions) (beta)
-               - src/interfaces/libpq/libpq.rc.in
-                 (pre-8.0 had just libpq.rc)
-               - src/port/win32ver.rc
        o update doc/FAQ and doc/src/FAQ/FAQ.html
        o copy FAQs from HEAD to top-most branch
-       o configure.in, and run autoconf or update configure 
+       o run src/tools/version_stamp.pl, then run autoconf
          (by packager) (beta)
 
 * Release notes
index f42d970ac5776876cd4193d7ed247d1e8b942679..fba117b380b42c2049e390e67bb83401c0f70a48 100755 (executable)
@@ -23,7 +23,7 @@
 # Major version is hard-wired into the script.  We update it when we branch
 # a new development version.
 $major1 = 8;
-$major2 = 4;
+$major2 = 3;
 
 # Validate argument and compute derived variables
 $minor = shift;