diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-09-14 18:04:40 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-09-14 18:04:40 +0000 |
commit | 7bf39e92129d3a10e27466b476e1b7dad448500a (patch) | |
tree | 0d1680d573057d84bcca5667782e057491a715c7 | |
parent | b5446194ec4929866fbb2a129521a73a30a68f3e (diff) | |
download | php-git-7bf39e92129d3a10e27466b476e1b7dad448500a.tar.gz |
Back to dev
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,7 @@ -'PHP NEWS +PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? Sep 2006, PHP 5.2.0 + 14 Sep 2006, PHP 5.2.0RC4 - Added DSA key generation support to openssl_pkey_new(), FR #38731 (marci at balabit dot hu, Tony) diff --git a/configure.in b/configure.in index 760e64da39..3a62103ff6 100644 --- a/configure.in +++ b/configure.in @@ -44,7 +44,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=2 RELEASE_VERSION=0 -EXTRA_VERSION="RC4" +EXTRA_VERSION="RC5-dev" PHP_VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" PHP_VERSION_ID=`expr [$]MAJOR_VERSION \* 10000 + [$]MINOR_VERSION \* 100 + [$]RELEASE_VERSION` diff --git a/main/php_version.h b/main/php_version.h index 09c1b13375..294241f63f 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 2 #define PHP_RELEASE_VERSION 0 -#define PHP_EXTRA_VERSION "RC4" -#define PHP_VERSION "5.2.0RC4" +#define PHP_EXTRA_VERSION "RC5-dev" +#define PHP_VERSION "5.2.0RC5-dev" #define PHP_VERSION_ID 50200 |