Skip to content

Commit feced13

Browse files
committed
Stamp HEAD as 12devel
Let the hacking begin ...
1 parent d842139 commit feced13

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

configure

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for PostgreSQL 11beta2.
3+
# Generated by GNU Autoconf 2.69 for PostgreSQL 12devel.
44
#
55
# Report bugs to <pgsql-bugs@postgresql.org>.
66
#
@@ -582,8 +582,8 @@ MAKEFLAGS=
582582
# Identity of this package.
583583
PACKAGE_NAME='PostgreSQL'
584584
PACKAGE_TARNAME='postgresql'
585-
PACKAGE_VERSION='11beta2'
586-
PACKAGE_STRING='PostgreSQL 11beta2'
585+
PACKAGE_VERSION='12devel'
586+
PACKAGE_STRING='PostgreSQL 12devel'
587587
PACKAGE_BUGREPORT='pgsql-bugs@postgresql.org'
588588
PACKAGE_URL=''
589589

@@ -1429,7 +1429,7 @@ if test "$ac_init_help" = "long"; then
14291429
# Omit some internal or obsolete options to make the list less imposing.
14301430
# This message is too long to be a string in the A/UX 3.1 sh.
14311431
cat <<_ACEOF
1432-
\`configure' configures PostgreSQL 11beta2 to adapt to many kinds of systems.
1432+
\`configure' configures PostgreSQL 12devel to adapt to many kinds of systems.
14331433

14341434
Usage: $0 [OPTION]... [VAR=VALUE]...
14351435

@@ -1494,7 +1494,7 @@ fi
14941494

14951495
if test -n "$ac_init_help"; then
14961496
case $ac_init_help in
1497-
short | recursive ) echo "Configuration of PostgreSQL 11beta2:";;
1497+
short | recursive ) echo "Configuration of PostgreSQL 12devel:";;
14981498
esac
14991499
cat <<\_ACEOF
15001500

@@ -1656,7 +1656,7 @@ fi
16561656
test -n "$ac_init_help" && exit $ac_status
16571657
if $ac_init_version; then
16581658
cat <<\_ACEOF
1659-
PostgreSQL configure 11beta2
1659+
PostgreSQL configure 12devel
16601660
generated by GNU Autoconf 2.69
16611661

16621662
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2405,7 +2405,7 @@ cat >config.log <<_ACEOF
24052405
This file contains any messages produced by compilers while
24062406
running configure, to aid debugging if configure makes a mistake.
24072407

2408-
It was created by PostgreSQL $as_me 11beta2, which was
2408+
It was created by PostgreSQL $as_me 12devel, which was
24092409
generated by GNU Autoconf 2.69. Invocation command line was
24102410

24112411
$ $0 $@
@@ -19348,7 +19348,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1934819348
# report actual input values of CONFIG_FILES etc. instead of their
1934919349
# values after options handling.
1935019350
ac_log="
19351-
This file was extended by PostgreSQL $as_me 11beta2, which was
19351+
This file was extended by PostgreSQL $as_me 12devel, which was
1935219352
generated by GNU Autoconf 2.69. Invocation command line was
1935319353

1935419354
CONFIG_FILES = $CONFIG_FILES
@@ -19418,7 +19418,7 @@ _ACEOF
1941819418
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1941919419
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1942019420
ac_cs_version="\\
19421-
PostgreSQL config.status 11beta2
19421+
PostgreSQL config.status 12devel
1942219422
configured by $0, generated by GNU Autoconf 2.69,
1942319423
with options \\"\$ac_cs_config\\"
1942419424

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl Read the Autoconf manual for details.
1717
dnl
1818
m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
1919

20-
AC_INIT([PostgreSQL], [11beta2], [pgsql-bugs@postgresql.org])
20+
AC_INIT([PostgreSQL], [12devel], [pgsql-bugs@postgresql.org])
2121

2222
m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required.
2323
Untested combinations of 'autoconf' and PostgreSQL versions are not

doc/bug.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ System Configuration:
2727

2828
Operating System (example: Linux 2.4.18) :
2929

30-
PostgreSQL version (example: PostgreSQL 11beta2): PostgreSQL 11beta2
30+
PostgreSQL version (example: PostgreSQL 12devel): PostgreSQL 12devel
3131

3232
Compiler used (example: gcc 3.3.5) :
3333

src/include/pg_config.h.win32

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -622,10 +622,10 @@
622622
#define PACKAGE_NAME "PostgreSQL"
623623

624624
/* Define to the full name and version of this package. */
625-
#define PACKAGE_STRING "PostgreSQL 11beta2"
625+
#define PACKAGE_STRING "PostgreSQL 12devel"
626626

627627
/* Define to the version of this package. */
628-
#define PACKAGE_VERSION "11beta2"
628+
#define PACKAGE_VERSION "12devel"
629629

630630
/* Define to the name of a signed 128-bit integer type. */
631631
#undef PG_INT128_TYPE
@@ -634,10 +634,10 @@
634634
#define PG_INT64_TYPE long long int
635635

636636
/* PostgreSQL version as a string */
637-
#define PG_VERSION "11beta2"
637+
#define PG_VERSION "12devel"
638638

639639
/* PostgreSQL version as a number */
640-
#define PG_VERSION_NUM 110000
640+
#define PG_VERSION_NUM 120000
641641

642642
/* Define to the one symbol short name of this package. */
643643
#define PACKAGE_TARNAME "postgresql"

src/interfaces/libpq/libpq.rc.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winver.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 11,0,0,0
5-
PRODUCTVERSION 11,0,0,0
4+
FILEVERSION 12,0,0,0
5+
PRODUCTVERSION 12,0,0,0
66
FILEFLAGSMASK 0x3fL
77
FILEFLAGS 0
88
FILEOS VOS__WINDOWS32
@@ -15,13 +15,13 @@ BEGIN
1515
BEGIN
1616
VALUE "CompanyName", "\0"
1717
VALUE "FileDescription", "PostgreSQL Access Library\0"
18-
VALUE "FileVersion", "11.0\0"
18+
VALUE "FileVersion", "12.0\0"
1919
VALUE "InternalName", "libpq\0"
2020
VALUE "LegalCopyright", "Copyright (C) 2018\0"
2121
VALUE "LegalTrademarks", "\0"
2222
VALUE "OriginalFilename", "libpq.dll\0"
2323
VALUE "ProductName", "PostgreSQL\0"
24-
VALUE "ProductVersion", "11.0\0"
24+
VALUE "ProductVersion", "12.0\0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

src/port/win32ver.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#include "pg_config.h"
33

44
VS_VERSION_INFO VERSIONINFO
5-
FILEVERSION 11,0,0,0
6-
PRODUCTVERSION 11,0,0,0
5+
FILEVERSION 12,0,0,0
6+
PRODUCTVERSION 12,0,0,0
77
FILEFLAGSMASK 0x17L
88
FILEFLAGS 0x0L
99
FILEOS VOS_NT_WINDOWS32

src/tools/git_changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ require IPC::Open2;
5757
# (We could get this from "git branches", but not worth the trouble.)
5858
# NB: master must be first!
5959
my @BRANCHES = qw(master
60-
REL_10_STABLE REL9_6_STABLE REL9_5_STABLE
60+
REL_11_STABLE REL_10_STABLE REL9_6_STABLE REL9_5_STABLE
6161
REL9_4_STABLE REL9_3_STABLE REL9_2_STABLE REL9_1_STABLE REL9_0_STABLE
6262
REL8_4_STABLE REL8_3_STABLE REL8_2_STABLE REL8_1_STABLE REL8_0_STABLE
6363
REL7_4_STABLE REL7_3_STABLE REL7_2_STABLE REL7_1_STABLE REL7_0_PATCHES

src/tools/version_stamp.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
# Major version is hard-wired into the script. We update it when we branch
2626
# a new development version.
27-
my $majorversion = 11;
27+
my $majorversion = 12;
2828

2929
# Validate argument and compute derived variables
3030
my $minor = shift;

0 commit comments

Comments
 (0)