summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyra3l@gmail.com>2016-11-24 02:04:05 +0100
committerFerenc Kovacs <tyra3l@gmail.com>2016-11-24 02:04:05 +0100
commit9e89e72feb5a5b1029f1a0309ca4ffcb1c4732c4 (patch)
treebe3ff84304d4bf3d575fdbbe26f23d1c90cb18b5
parent2d19c92fc2f14aa97db9094eaa0b67d1c3b12409 (diff)
downloadphp-git-php-5.6.29RC1.tar.gz
5.6.29RC1php-5.6.29RC1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 0ee931f44f..afb110c518 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2016, PHP 5.6.29
+24 Nov 2016, PHP 5.6.29RC1
- Mysqlnd:
. Fixed bug #64526 (Add missing mysqlnd.* parameters to php.ini-*). (cmb)
diff --git a/configure.in b/configure.in
index 08c580326b..beb661663f 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=6
PHP_RELEASE_VERSION=29
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="RC1"
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 ba4f4d3deb..d1075c2576 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 6
#define PHP_RELEASE_VERSION 29
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.6.29-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.6.29RC1"
#define PHP_VERSION_ID 50629