summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavey Shafik <me@daveyshafik.com>2016-07-20 14:55:24 -0700
committerDavey Shafik <me@daveyshafik.com>2016-07-20 14:55:24 -0700
commit6c3ed91bdeb7de0e7d42e7b5545f77839bf11bcb (patch)
tree9d91309ef5999edab2a4f88929d54fca86f23bcb
parent201c8438adc33e89fc46f7a3b7ce324a455afda9 (diff)
downloadphp-git-6c3ed91bdeb7de0e7d42e7b5545f77839bf11bcb.tar.gz
Update version/date for 7.1.0beta1
-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 88bc32d979..6df24793a4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2016, PHP 7.1.0beta1
+21 Jul 2016, PHP 7.1.0beta1
- Core:
. Fixed bug #72629 (Caught exception assignment to variables ignores
diff --git a/configure.in b/configure.in
index a35f413dad..95bc42d292 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=1
PHP_RELEASE_VERSION=0
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="beta1"
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 4714e5dc4b..4afa4b3690 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 1
#define PHP_RELEASE_VERSION 0
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.1.0-dev"
+#define PHP_EXTRA_VERSION "beta1"
+#define PHP_VERSION "7.1.0beta1"
#define PHP_VERSION_ID 70100