Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5cdf45c

Browse files
committed
Stamp minor version numbers for 7.4 release.
1 parente3d7c9b commit5cdf45c

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

‎src/interfaces/ecpg/lib/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-
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile,v 1.16 2002/03/11 12:55:55 meskes Exp $
7+
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile,v 1.17 2002/12/04 18:14:11 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

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

1515
NAME= ecpg
1616
SO_MAJOR_VERSION= 3
17-
SO_MINOR_VERSION= 4.0
17+
SO_MINOR_VERSION= 4.1
1818

1919
overrideCPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include -I$(libpq_srcdir)$(CPPFLAGS)
2020

‎src/interfaces/ecpg/preproc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.88 2002/11/01 22:52:33 tgl Exp $
1+
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.89 2002/12/04 18:14:11 momjian Exp $
22

33
subdir = src/interfaces/ecpg/preproc
44
top_builddir = ../../../..
55
include$(top_builddir)/src/Makefile.global
66

77
MAJOR_VERSION=2
8-
MINOR_VERSION=10
8+
MINOR_VERSION=11
99
PATCHLEVEL=0
1010

1111
overrideCPPFLAGS := -I$(srcdir)/../include -I$(srcdir)$(CPPFLAGS)\

‎src/interfaces/libpgtcl/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-
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.27 2002/07/27 20:10:05 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.28 2002/12/04 18:14:11 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -14,7 +14,7 @@ include ../../Makefile.global
1414

1515
NAME= pgtcl
1616
SO_MAJOR_VERSION= 2
17-
SO_MINOR_VERSION=2
17+
SO_MINOR_VERSION=3
1818

1919
overrideCPPFLAGS := -I$(libpq_srcdir)$(CPPFLAGS)
2020

‎src/interfaces/libpq/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-
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.65 2002/09/03 21:45:44 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.66 2002/12/04 18:14:11 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -16,7 +16,7 @@ include $(top_builddir)/src/Makefile.global
1616
# shared library parameters
1717
NAME= pq
1818
SO_MAJOR_VERSION= 2
19-
SO_MINOR_VERSION=2
19+
SO_MINOR_VERSION=3
2020

2121
overrideCPPFLAGS := -I$(srcdir)$(CPPFLAGS) -DFRONTEND -DSYSCONFDIR='"$(sysconfdir)"'
2222

‎src/interfaces/libpq/libpq.rc

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

‎src/interfaces/python/GNUmakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.13 2001/12/13 18:39:04 petere Exp $
1+
# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.14 2002/12/04 18:14:11 momjian Exp $
22

33
subdir = src/interfaces/python
44
top_builddir = ../../..
55
include$(top_builddir)/src/Makefile.global
66

77
NAME = _pgmodule
8-
SO_MAJOR_VERSION =0
9-
SO_MINOR_VERSION =0
8+
SO_MAJOR_VERSION =2
9+
SO_MINOR_VERSION =3
1010
OBJS = pgmodule.o
1111
SHLIB_LINK =$(libpq)
1212
ifeq ($(PORTNAME), win)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp