summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2009-11-27 14:25:58 +0000
committerIlia Alshanetsky <iliaa@php.net>2009-11-27 14:25:58 +0000
commitee12cbd751aecb4f3f472f636a348474e3122192 (patch)
treea411b411f0ef02c2ed99eeb35e6305aa74109e2b
parente85a2dd2961fa21972afeb270a93d70bef34cc31 (diff)
downloadphp-git-ee12cbd751aecb4f3f472f636a348474e3122192.tar.gz
5.2.12RC3
-rw-r--r--NEWS3
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 5 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index eba0855fd0..3a8e48d5d5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Dec 2009, PHP 5.2.12RC3
+27 Nov 2009, PHP 5.2.12RC3
+- Fixed break in the build chain introduced in 5.2.12RC2 (Jani)
26 Nov 2009, PHP 5.2.12RC2
- Updated timezone database to version 2009.19 (2009s). (Derick)
diff --git a/configure.in b/configure.in
index 73dd1fcc54..fb38a0c68a 100644
--- a/configure.in
+++ b/configure.in
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=2
PHP_RELEASE_VERSION=12
-PHP_EXTRA_VERSION="RC3-dev"
+PHP_EXTRA_VERSION="RC3"
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index fb562ec7fd..87c568d0ff 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 12
-#define PHP_EXTRA_VERSION "RC3-dev"
-#define PHP_VERSION "5.2.12RC3-dev"
+#define PHP_EXTRA_VERSION "RC3"
+#define PHP_VERSION "5.2.12RC3"
#define PHP_VERSION_ID 50212