summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2014-09-24 10:30:08 +0200
committerFerenc Kovacs <tyrael@php.net>2014-09-24 10:30:08 +0200
commit4c4a354223c7aba1ea3326459aeabbe5644bf9c4 (patch)
tree74ca797e72e2c46a8b3b867f92c479b71f3b9f48
parentc7c360ed37ebd7171cc19cc20c90fc090ced9d44 (diff)
downloadphp-git-4c4a354223c7aba1ea3326459aeabbe5644bf9c4.tar.gz
5.6.1
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 50e61cbeec..d69a55a9fc 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=1
-PHP_EXTRA_VERSION="RC1"
+PHP_EXTRA_VERSION=""
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 300760b19d..fe6057d58a 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 1
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.6.1RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.6.1"
#define PHP_VERSION_ID 50601