summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--Zend/zend.h2
-rw-r--r--configure.in4
-rw-r--r--main/php_version.h6
4 files changed, 8 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 8881033e1e..4b35d8aba4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? ??? 2005, PHP 5.0.4
+
15 Dec 2004, PHP 5.0.3
- Added the %F modifier to *printf to render a non-locale-aware representation
of a float with the . as decimal seperator. (Derick)
diff --git a/Zend/zend.h b/Zend/zend.h
index 4317cf842a..f5a81fc85b 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -22,7 +22,7 @@
#ifndef ZEND_H
#define ZEND_H
-#define ZEND_VERSION "2.0.3"
+#define ZEND_VERSION "2.0.4-dev"
#define ZEND_ENGINE_2
diff --git a/configure.in b/configure.in
index 43191b2957..5f302b4492 100644
--- a/configure.in
+++ b/configure.in
@@ -40,8 +40,8 @@ AC_CONFIG_HEADER(main/php_config.h)
MAJOR_VERSION=5
MINOR_VERSION=0
-RELEASE_VERSION=3
-EXTRA_VERSION=""
+RELEASE_VERSION=4
+EXTRA_VERSION="-dev"
VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION"
dnl Define where extension directories are located in the configure context
diff --git a/main/php_version.h b/main/php_version.h
index 121f7f0a90..ebfee22021 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -2,6 +2,6 @@
/* edit configure.in to change version number */
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 0
-#define PHP_RELEASE_VERSION 3
-#define PHP_EXTRA_VERSION ""
-#define PHP_VERSION "5.0.3"
+#define PHP_RELEASE_VERSION 4
+#define PHP_EXTRA_VERSION "-dev"
+#define PHP_VERSION "5.0.4-dev"