diff options
author | Zeev Suraski <zeev@php.net> | 2005-09-05 10:41:14 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2005-09-05 10:41:14 +0000 |
commit | 12fc5ecaa1e4acfad994131536837290fab4dce4 (patch) | |
tree | a0250b78074064b78966043f1f9612cb35307c35 | |
parent | 83edf04cf0101abc0d51f64910bba13585cc8e2f (diff) | |
download | php-git-12fc5ecaa1e4acfad994131536837290fab4dce4.tar.gz |
Roll 5.0.5
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -25 Aug 2005, PHP 5.0.5RC2 +05 Sep 2005, PHP 5.0.5 - Upgraded PCRE library to version 5.0. (Andrei) - Removed php_check_syntax() function which never worked properly. (Ilia) - Added new function mysqli_set_charset(). (Georg) diff --git a/configure.in b/configure.in index 55f30a55f6..c72cbad084 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=0 RELEASE_VERSION=5 -EXTRA_VERSION="-dev" +EXTRA_VERSION="" 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 78fe025023..60279d10e4 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 0 #define PHP_RELEASE_VERSION 5 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.0.5-dev" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "5.0.5" |