Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1c3b43c

Browse files
committed
Stamp major release 8.3.0, and increment library version numbers.
1 parent b358d9c commit 1c3b43c

File tree

10 files changed

+23
-22
lines changed

10 files changed

+23
-22
lines changed

doc/bug.template

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

3232
Operating System (example: Linux 2.4.18) :
3333

34-
PostgreSQL version (example: PostgreSQL 8.2) : PostgreSQL 8.2
34+
PostgreSQL version (example: PostgreSQL 8.2.1): PostgreSQL 8.2.1
3535

3636
Compiler used (example: gcc 3.3.5) :
3737

src/include/pg_config.h.win32

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -568,16 +568,16 @@
568568
#define PACKAGE_NAME "PostgreSQL"
569569

570570
/* Define to the full name and version of this package. */
571-
#define PACKAGE_STRING "PostgreSQL 8.2"
571+
#define PACKAGE_STRING "PostgreSQL 8.3 devel"
572572

573573
/* Define to the version of this package. */
574-
#define PACKAGE_VERSION "8.2"
574+
#define PACKAGE_VERSION "8.3"
575575

576576
/* PostgreSQL version as a string */
577-
#define PG_VERSION "8.2"
577+
#define PG_VERSION "8.3"
578578

579579
/* PostgreSQL version as a number */
580-
#define PG_VERSION_NUM 80200
580+
#define PG_VERSION_NUM 80300
581581

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

src/interfaces/ecpg/compatlib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.25 2006/09/10 22:07:02 tgl Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.26 2007/01/05 20:54:39 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -14,7 +14,7 @@ include $(top_builddir)/src/Makefile.global
1414

1515
NAME= ecpg_compat
1616
SO_MAJOR_VERSION= 2
17-
SO_MINOR_VERSION= 2
17+
SO_MINOR_VERSION= 3
1818
DLTYPE= library
1919

2020
override CPPFLAGS := -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \

src/interfaces/ecpg/ecpglib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.44 2006/09/28 14:48:45 tgl Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.45 2007/01/05 20:54:39 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -14,7 +14,7 @@ include $(top_builddir)/src/Makefile.global
1414

1515
NAME= ecpg
1616
SO_MAJOR_VERSION= 5
17-
SO_MINOR_VERSION= 2
17+
SO_MINOR_VERSION= 3
1818
DLTYPE= library
1919

2020
override CPPFLAGS := -DFRONTEND \

src/interfaces/ecpg/pgtypeslib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.30 2006/08/28 16:13:11 tgl Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.31 2007/01/05 20:54:39 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -14,7 +14,7 @@ include $(top_builddir)/src/Makefile.global
1414

1515
NAME= pgtypes
1616
SO_MAJOR_VERSION= 2
17-
SO_MINOR_VERSION= 2
17+
SO_MINOR_VERSION= 3
1818
DLTYPE= library
1919

2020
override CPPFLAGS := -DFRONTEND \

src/interfaces/ecpg/preproc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1998-2006, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.121 2006/08/28 16:13:11 tgl Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.122 2007/01/05 20:54:39 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -14,7 +14,7 @@ top_builddir = ../../../..
1414
include $(top_builddir)/src/Makefile.global
1515

1616
MAJOR_VERSION= 4
17-
MINOR_VERSION= 2
17+
MINOR_VERSION= 3
1818
PATCHLEVEL=1
1919

2020
override CPPFLAGS := -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \

src/interfaces/libpq/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.151 2006/12/28 00:01:05 tgl Exp $
8+
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.152 2007/01/05 20:54:40 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

@@ -17,7 +17,7 @@ include $(top_builddir)/src/Makefile.global
1717
# shared library parameters
1818
NAME= pq
1919
SO_MAJOR_VERSION= 5
20-
SO_MINOR_VERSION= 0
20+
SO_MINOR_VERSION= 1
2121
DLTYPE= library
2222

2323
override CPPFLAGS := -DFRONTEND -I$(srcdir) $(CPPFLAGS) -I$(top_builddir)/src/port

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 8,2,0,0
5-
PRODUCTVERSION 8,2,0,0
4+
FILEVERSION 8,3,0,0
5+
PRODUCTVERSION 8,3,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", "8.2.0\0"
18+
VALUE "FileVersion", "8.3.0\0"
1919
VALUE "InternalName", "libpq\0"
2020
VALUE "LegalCopyright", "Copyright (C) 2005\0"
2121
VALUE "LegalTrademarks", "\0"
2222
VALUE "OriginalFilename", "libpq.dll\0"
2323
VALUE "ProductName", "PostgreSQL\0"
24-
VALUE "ProductVersion", "8.2.0\0"
24+
VALUE "ProductVersion", "8.3.0\0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

src/port/win32ver.rc

Lines changed: 3 additions & 3 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 8,2,0,0
6-
PRODUCTVERSION 8,2,0,0
5+
FILEVERSION 8,3,0,0
6+
PRODUCTVERSION 8,3,0,0
77
FILEFLAGSMASK 0x17L
88
FILEFLAGS 0x0L
99
FILEOS VOS_NT_WINDOWS32
@@ -17,7 +17,7 @@ BEGIN
1717
VALUE "CompanyName", "PostgreSQL Global Development Group"
1818
VALUE "FileDescription", FILEDESC
1919
VALUE "FileVersion", PG_VERSION
20-
VALUE "LegalCopyright", "Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California."
20+
VALUE "LegalCopyright", "Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California."
2121
VALUE "ProductName", "PostgreSQL"
2222
VALUE "ProductVersion", PG_VERSION
2323
END

src/tools/RELEASE_CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ For All Releases (major, minor, beta, RC)
66
o bump Win32 interface version numbers
77
- src/include/pg_config.h.win32
88
- src/interfaces/libpq/libpq.rc.in
9+
(pre-8.0 had just libpq.rc)
910
- src/port/win32ver.rc
1011
o update doc/FAQ and doc/src/FAQ/FAQ.html
1112
o copy FAQs from HEAD to top-most branch

0 commit comments

Comments
 (0)