Skip to content

Commit d9f3eac

Browse files
committed
Bump version to 7.0.0-dev
1 parent 8b66d64 commit d9f3eac

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

Zend/zend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#ifndef ZEND_H
2323
#define ZEND_H
2424

25-
#define ZEND_VERSION "2.7.0-dev"
25+
#define ZEND_VERSION "2.8.0-dev"
2626

2727
#define ZEND_ENGINE_2
2828

Zend/zend_extensions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/* The first number is the engine version and the rest is the date.
2929
* This way engine 2/3 API no. is always greater than engine 1 API no..
3030
*/
31-
#define ZEND_EXTENSION_API_NO 220131227
31+
#define ZEND_EXTENSION_API_NO 220140815
3232

3333
typedef struct _zend_extension_version_info {
3434
int zend_extension_api_no;

Zend/zend_modules.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#define ZEND_MODULE_INFO_FUNC_ARGS zend_module_entry *zend_module TSRMLS_DC
3434
#define ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU zend_module TSRMLS_CC
3535

36-
#define ZEND_MODULE_API_NO 20131227
36+
#define ZEND_MODULE_API_NO 20140815
3737
#ifdef ZTS
3838
#define USING_ZTS 1
3939
#else

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ int zend_sprintf(char *buffer, const char *format, ...);
117117
#undef PTHREADS
118118
])
119119

120-
PHP_MAJOR_VERSION=5
121-
PHP_MINOR_VERSION=7
120+
PHP_MAJOR_VERSION=7
121+
PHP_MINOR_VERSION=0
122122
PHP_RELEASE_VERSION=0
123123
PHP_EXTRA_VERSION="-dev"
124124
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"

ext/mysqli/mysqli_api.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1689,7 +1689,8 @@ static int mysqli_options_get_option_zval_type(int option)
16891689
switch (option) {
16901690
#ifdef MYSQLI_USE_MYSQLND
16911691
#if PHP_MAJOR_VERSION >= 6
1692-
case MYSQLND_OPT_NUMERIC_AND_DATETIME_AS_UNICODE:
1692+
/* PHP-7 doesn't supprt unicode yet ??? */
1693+
/*case MYSQLND_OPT_NUMERIC_AND_DATETIME_AS_UNICODE:*/
16931694
#endif
16941695
case MYSQLND_OPT_NET_CMD_BUFFER_SIZE:
16951696
case MYSQLND_OPT_NET_READ_BUFFER_SIZE:

main/php_version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* automatically generated by configure */
22
/* edit configure.in to change version number */
3-
#define PHP_MAJOR_VERSION 5
4-
#define PHP_MINOR_VERSION 7
3+
#define PHP_MAJOR_VERSION 7
4+
#define PHP_MINOR_VERSION 0
55
#define PHP_RELEASE_VERSION 0
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.7.0-dev"
8-
#define PHP_VERSION_ID 50700
7+
#define PHP_VERSION "7.0.0-dev"
8+
#define PHP_VERSION_ID 70000

0 commit comments

Comments
 (0)