From: Derick Rethans Date: Sat, 10 Sep 2005 15:44:17 +0000 (+0000) Subject: - Fix version numbers as discussed to help version_compare for the PEAR folks. X-Git-Tag: RELEASE_1_0RC1~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7262ccfac969295db3aa00536d72c1099504cd62;p=php - Fix version numbers as discussed to help version_compare for the PEAR folks. --- diff --git a/configure.in b/configure.in index 297e9f398b..470b492876 100644 --- a/configure.in +++ b/configure.in @@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=1 RELEASE_VERSION=0 -EXTRA_VERSION="-dev" +EXTRA_VERSION="RC2-dev" VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" dnl Define where extension directories are located in the configure context diff --git a/main/php_version.h b/main/php_version.h index eefa06de77..7d5c86f842 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 1 #define PHP_RELEASE_VERSION 0 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.1.0-dev" +#define PHP_EXTRA_VERSION "RC2-dev" +#define PHP_VERSION "5.1.0RC2-dev"