diff options
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | main/php_version.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 0935a9c297..bb0fbf5ee5 100644 --- a/configure.in +++ b/configure.in @@ -41,8 +41,8 @@ AC_CONFIG_HEADER(main/php_config.h) PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=3 -PHP_RELEASE_VERSION=9 -PHP_EXTRA_VERSION="" +PHP_RELEASE_VERSION=10 +PHP_EXTRA_VERSION="-dev" 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 54f018f1df..ae47b8830e 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 3 -#define PHP_RELEASE_VERSION 9 -#define PHP_EXTRA_VERSION "" -#define PHP_VERSION "5.3.9" -#define PHP_VERSION_ID 50309 +#define PHP_RELEASE_VERSION 10 +#define PHP_EXTRA_VERSION "-dev" +#define PHP_VERSION "5.3.10-dev" +#define PHP_VERSION_ID 50310 |