Skip to content

Commit 48f25ca

Browse files
committed
Update for 7.0.2.
1 parent 68f7531 commit 48f25ca

File tree

9 files changed

+96
-52
lines changed

9 files changed

+96
-52
lines changed

HISTORY

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
Release Notes
33
------------------------------------------------------------------------
44

5+
Release 7.0.2
6+
7+
This is a repackaging of 7.0.1 with added documentation.
8+
9+
Migration to v7.0.2
10+
11+
A dump/restore is not required for those running 7.*.
12+
13+
Changes
14+
-------
15+
Added documentation to tarball.
16+
17+
18+
------------------------------------------------------------------------
19+
Release 7.0.1
20+
Release Notes
21+
------------------------------------------------------------------------
22+
523
Release 7.0.1
624

725
This is basically a cleanup release for 7.0.1

INSTALL

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Installation instructions for PostgreSQL 7.0.1.
1+
Installation instructions for PostgreSQL 7.0.2.
22

33
If you haven't gotten the PostgreSQL distribution, get it from
44
ftp.postgresql.org, then unpack it:
55

6-
> gunzip postgresql-7.0.1.tar.gz
7-
> tar -xf postgresql-7.0.1.tar
8-
> mv postgresql-7.0.1 /usr/src
6+
> gunzip postgresql-7.0.2.tar.gz
7+
> tar -xf postgresql-7.0.2.tar
8+
> mv postgresql-7.0.2 /usr/src
99

1010

1111
Before you start
@@ -138,10 +138,11 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
138138
Test. (Be sure to use the "parallel regress test" method, since the
139139
sequential method only works with an already-installed server.)
140140

141-
5. If you are not upgrading an existing system then skip to step 7.
141+
5. If you are not upgrading an existing system, skip to step 7.
142+
If you are running 7.*, skip to step 6.
142143

143-
You now need to back up your existing database. To dump your fairly
144-
recent post-6.0 database installation, type
144+
You now need to back up your existing database. To dump your
145+
database installation, type:
145146

146147
> pg_dumpall > db.out
147148

@@ -151,13 +152,8 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
151152
this (such as using OIDs as keys in tables), don't do it.
152153

153154
Make sure to use the pg_dumpall command from the version you are
154-
currently running. 7.0.1's pg_dumpall will not work on pre-7.0 databases.
155-
However, if you are still using 6.0, do not use the pg_dumpall script
156-
from 6.0 or everything will be owned by the PostgreSQL superuser after
157-
you reload. In that case you should grab pg_dumpall from a later 6.x.x
158-
release. If you are upgrading from a version prior to Postgres95 v1.09
159-
then you must back up your database, install Postgres95 v1.09, restore
160-
your database, then back it up again.
155+
currently running. 7.0.2's pg_dumpall should not be used on older
156+
databases.
161157

162158
Caution
163159
You must make sure that your database is not updated in the middle of your
@@ -167,7 +163,7 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
167163

168164
Rather than using pg_dumpall, pg_upgrade can often be used.
169165

170-
6. If you are upgrading an existing system then kill the database server
166+
6. If you are upgrading an existing system, kill the database server
171167
now. Type
172168

173169
> ps ax | grep postmaster
@@ -299,7 +295,7 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
299295

300296
This concludes the installation proper. To make your life more productive
301297
and enjoyable you should look at the following optional steps and
302-
suggestions.
298+
suggestions:
303299

304300
* Life will be more convenient if you set up some environment variables.
305301
First of all you probably want to include /usr/local/pgsql/bin (or
@@ -315,7 +311,7 @@ suggestions.
315311

316312
* You probably want to install the man and HTML documentation. Type
317313

318-
> cd /usr/src/pgsql/postgresql-7.0.1/doc
314+
> cd /usr/src/pgsql/postgresql-7.0.2/doc
319315
> gmake install
320316

321317

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PostgreSQL Data Base Management System (formerly known as Postgres, then
33
as Postgres95).
44

5-
This directory contains the development version of 7.0.1 of the PostgreSQL
5+
This directory contains the development version of 7.0.2 of the PostgreSQL
66
database server. The server is not ANSI SQL compliant, but it gets
77
closer with every release. After you unzip and untar the distribution
88
file, look at file INSTALL for the installation notes and file HISTORY

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.0.26 ELF) :
2929

30-
PostgreSQL version (example: PostgreSQL-7.0): PostgreSQL-7.0.1
30+
PostgreSQL version (example: PostgreSQL-7.0): PostgreSQL-7.0.2
3131

3232
Compiler used (example: gcc 2.8.0) :
3333

doc/src/sgml/install.sgml

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.41.2.2 2000/06/01 05:58:56 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.41.2.3 2000/06/05 10:59:16 momjian Exp $
33
-->
44

55
<chapter id="install">
@@ -8,7 +8,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.41.2.2 2000/06/01 05
88
<abstract>
99
<para>
1010
Installation instructions for
11-
<productname>PostgreSQL</productname> 7.0.1.
11+
<productname>PostgreSQL</productname> 7.0.2.
1212
</para>
1313
</abstract>
1414

@@ -18,9 +18,9 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.41.2.2 2000/06/01 05
1818
then unpack it:
1919

2020
<programlisting>
21-
&gt; gunzip postgresql-7.0.1.tar.gz
22-
&gt; tar -xf postgresql-7.0.1.tar
23-
&gt; mv postgresql-7.0.1 /usr/src
21+
&gt; gunzip postgresql-7.0.2.tar.gz
22+
&gt; tar -xf postgresql-7.0.2.tar
23+
&gt; mv postgresql-7.0.2 /usr/src
2424
</programlisting>
2525
</para>
2626

@@ -241,16 +241,16 @@ All of PostgreSQL is successfully made. Ready to install.
241241

242242
<step performance="required">
243243
<para>
244-
If you are not upgrading an existing system then skip to
244+
If you are not upgrading an existing system, skip to
245245
<xref linkend="continue">.
246246
</para>
247247
<para>
248-
If you are running 7.0 or later, skip to
248+
If you are running 7.*, skip to step
249249
<xref linkend="nodump">.
250250
</para>
251251
<para>
252252
You now need to back up your existing database.
253-
To dump your fairly recent post-6.0 database installation, type
253+
To dump your database installation, type:
254254
<programlisting>
255255
&gt; pg_dumpall > db.out
256256
</programlisting>
@@ -264,18 +264,8 @@ All of PostgreSQL is successfully made. Ready to install.
264264
<para>
265265
Make sure to use the <application>pg_dumpall</application>
266266
command from the version you are currently running.
267-
7.0.1's <application>pg_dumpall</application> will not work on older databases.
268-
However, if you are still using 6.0, do not use the
269-
<application>pg_dumpall</application> script from 6.0 or everything will be
270-
owned by the <productname>PostgreSQL</productname> superuser after you
271-
reload. In that case
272-
you should grab <application>pg_dumpall</application> from a later
273-
6.x.x release.
274-
If you are upgrading from a version prior to
275-
<productname>Postgres95</productname> v1.09 then you must back
276-
up your database,
277-
install <productname>Postgres95</productname> v1.09, restore your database,
278-
then back it up again.
267+
7.0.2's <application>pg_dumpall</application> should not
268+
be used on older databases.
279269
</para>
280270

281271
<caution>
@@ -295,7 +285,7 @@ All of PostgreSQL is successfully made. Ready to install.
295285

296286
<step performance="required" id="nodump">
297287
<para>
298-
If you are upgrading an existing system then kill the database
288+
If you are upgrading an existing system, kill the database
299289
server now. Type
300290
<programlisting>
301291
&gt; ps ax | grep postmaster
@@ -460,7 +450,7 @@ libpq.so.2.1: cannot open shared object file: No such file or directory
460450
<para>
461451
This concludes the installation proper. To make your life more
462452
productive and enjoyable
463-
you should look at the following optional steps and suggestions.
453+
you should look at the following optional steps and suggestions:
464454
</para>
465455

466456
<itemizedlist>
@@ -493,7 +483,7 @@ libpq.so.2.1: cannot open shared object file: No such file or directory
493483
You probably want to install the <application>man</application> and
494484
<acronym>HTML</acronym> documentation. Type
495485
<programlisting>
496-
&gt; cd /usr/src/pgsql/postgresql-7.0.1/doc
486+
&gt; cd /usr/src/pgsql/postgresql-7.0.2/doc
497487
&gt; gmake install
498488
</programlisting>
499489
This will install files under <filename>/usr/local/pgsql/doc</filename>

doc/src/sgml/release.sgml

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,52 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.49.2.4 2000/06/02 16:34:42 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.49.2.5 2000/06/05 10:59:16 momjian Exp $
33
-->
44

55
<chapter id="release">
66
<title>Release Notes</title>
77

8+
<sect1>
9+
<title>Release 7.0.2</title>
10+
<!--
11+
<docinfo>
12+
<authorgroup>
13+
<author>
14+
<firstname>Bruce</firstname>
15+
<surname>Momjian</surname>
16+
</author>
17+
</authorgroup>
18+
<date>2000-06-05</date>
19+
</docinfo>
20+
-->
21+
22+
<para>
23+
2000-06-05
24+
</para>
25+
<para>
26+
This is a repackaging of 7.0.1 with added documentation.
27+
</para>
28+
29+
30+
<sect2>
31+
<title>Migration to v7.0.2</title>
32+
33+
<para>
34+
A dump/restore is <emphasis>not</emphasis> required for those running
35+
7.*.
36+
</para>
37+
</sect2>
38+
<sect2>
39+
<title>Changes</title>
40+
41+
<para>
42+
<programlisting>
43+
Added documentation to tarball.
44+
</programlisting>
45+
</para>
46+
</sect2>
47+
</sect1>
48+
49+
850
<sect1>
951
<title>Release 7.0.1</title>
1052
<!--

register.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
(2000-06-01)
2+
(2000-06-05)
33
PostgreSQL has a Web site at http://www.postgresql.org/ which carries details
44
on the latest release, upcoming features, and other information to make your
55
work or play with PostgreSQL more productive.
@@ -21,5 +21,3 @@ following registration URL:
2121

2222
Thank you for choosing PostgreSQL, the most advanced open source database
2323
engine.
24-
25-

src/include/version.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* this file contains the interface to version.c.
55
* Also some parameters.
66
*
7-
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.8.2.1 2000/06/01 05:14:33 momjian Exp $
7+
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.8.2.2 2000/06/05 10:59:17 momjian Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -16,7 +16,7 @@ void SetPgVersion(const char *path, char **reason_p);
1616

1717
#define PG_RELEASE "7"
1818
#define PG_VERSION "0"
19-
#define PG_SUBVERSION "1"
19+
#define PG_SUBVERSION "2"
2020

2121
#define PG_VERFILE "PG_VERSION"
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,0,1,0
5-
PRODUCTVERSION 7,0,1,0
4+
FILEVERSION 7,0,2,0
5+
PRODUCTVERSION 7,0,2,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, 0, 1, 0\0"
18+
VALUE "FileVersion", "7, 0, 2, 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, 0, 1, 0\0"
24+
VALUE "ProductVersion", "7, 0, 2, 0\0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)