Author: dpage
Date: 2005-11-05 14:38:30 +0000 (Sat, 05 Nov 2005)
New Revision: 4666
Modified:
trunk/pgadmin3/CHANGELOG.txt
trunk/pgadmin3/configure.ac
trunk/pgadmin3/pkg/src/build-tarball
trunk/pgadmin3/src/include/version.h
Log:
Bump version numbers for release.
Modified: trunk/pgadmin3/CHANGELOG.txt
===================================================================
--- trunk/pgadmin3/CHANGELOG.txt 2005-11-05 14:31:14 UTC (rev 4665)
+++ trunk/pgadmin3/CHANGELOG.txt 2005-11-05 14:38:30 UTC (rev 4666)
@@ -17,13 +17,13 @@
</ul>
<br>
<ul>
- <li>2005-11-04 AP 1.4RC2 Fix SET role (r:Florian Pflug), fix role help
- <li>2005-11-04 DP 1.4RC2 Fix role inheritance option when creating roles, per Mike Allen
- <li>2005-11-03 DP 1.4RC2 Minor fix to the pgAgent command line parser, per Harald Armin Massa
- <li>2005-11-03 DP 1.4RC2 Honour type length/precision when creating composite types, per Ivan
- <li>2005-11-02 AP 1.4RC2 Fix crash in trigger property (r: Oriza Triznyak)
- <li>2005-11-01 AP 1.4RC2 Fix function return type array (r: Andras Voros)
- <li>2005-11-01 AP 1.4RC2 Fix query tool connect annoyance (r: Florian Pflug)
+ <li>2005-11-04 AP 1.4.0 Fix SET role (r:Florian Pflug), fix role help
+ <li>2005-11-04 DP 1.4.0 Fix role inheritance option when creating roles, per Mike Allen
+ <li>2005-11-03 DP 1.4.0 Minor fix to the pgAgent command line parser, per Harald Armin Massa
+ <li>2005-11-03 DP 1.4.0 Honour type length/precision when creating composite types, per Ivan
+ <li>2005-11-02 AP 1.4.0 Fix crash in trigger property (r: Oriza Triznyak)
+ <li>2005-11-01 AP 1.4.0 Fix function return type array (r: Andras Voros)
+ <li>2005-11-01 AP 1.4.0 Fix query tool connect annoyance (r: Florian Pflug)
<li>2005-10-31 DP 1.4RC1 Fix eventlog output in pgAgent, per Paolo Saudin
<li>2005-10-31 DP 1.4RC1 Quote member names in compsoite types, per Ivan
<li>2005-10-31 DP 1.4RC1 Enable the precision textbox when adding numeric members to composite types, per Ivan
Modified: trunk/pgadmin3/configure.ac
===================================================================
--- trunk/pgadmin3/configure.ac 2005-11-05 14:31:14 UTC (rev 4665)
+++ trunk/pgadmin3/configure.ac 2005-11-05 14:38:30 UTC (rev 4666)
@@ -1,7 +1,7 @@
AC_PREREQ(2.57)
AC_REVISION($Revision$)
AC_COPYRIGHT(Copyright 2002 - 2004 The pgAdmin Development Team)
-AC_INIT(pgadmin3, 1.4.0-RC1, pgadmin-support@postgresql.org)
+AC_INIT(pgadmin3, 1.4.0, pgadmin-support@postgresql.org)
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR([src/pgAdmin3.cpp])
AM_CONFIG_HEADER([config.h])
Modified: trunk/pgadmin3/pkg/src/build-tarball
===================================================================
--- trunk/pgadmin3/pkg/src/build-tarball 2005-11-05 14:31:14 UTC (rev 4665)
+++ trunk/pgadmin3/pkg/src/build-tarball 2005-11-05 14:38:30 UTC (rev 4666)
@@ -43,7 +43,7 @@
# Make and store the source tarball
make dist
-if [ -e pgadmin3-1.4.0-RC1.tar.gz ]; then
- mv pgadmin3-1.4.0-RC1.tar.gz /var/www/developer.pgadmin.org/snapshots/src/pgadmin3-src-`/usr/bin/date
+%Y%m%d`.tar.gz
+if [ -e pgadmin3-1.4.0.tar.gz ]; then
+ mv pgadmin3-1.4.0.tar.gz /var/www/developer.pgadmin.org/snapshots/src/pgadmin3-src-`/usr/bin/date +%Y%m%d`.tar.gz
ln -s -f src/pgadmin3-src-`/usr/bin/date +%Y%m%d`.tar.gz
/var/www/developer.pgadmin.org/snapshots/pgadmin3-src.tar.gz
fi
Modified: trunk/pgadmin3/src/include/version.h
===================================================================
--- trunk/pgadmin3/src/include/version.h 2005-11-05 14:31:14 UTC (rev 4665)
+++ trunk/pgadmin3/src/include/version.h 2005-11-05 14:38:30 UTC (rev 4666)
@@ -11,12 +11,12 @@
// Application Versions
-#define VERSION_STR wxT("1.4 post-RC1")
-#define VERSION_NUM 1,4,0,99
-#define VERSION_PACKAGE 1.4-RC1
+#define VERSION_STR wxT("1.4.0")
+#define VERSION_NUM 1,4,0,100
+#define VERSION_PACKAGE 1.4.0
#define VERSION_SVN wxT("$Rev$")
-#define PRERELEASE 1
+#define PRERELEASE 0
// #define BUILD "..."
#ifdef RC_INVOKED