diff options
author | foobar <sniper@php.net> | 2003-05-28 12:32:06 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-05-28 12:32:06 +0000 |
commit | e88b74b8eca6d12392659710f8d98c39d2478bf8 (patch) | |
tree | 59a592e2ccc66f404bf21d86f4c54d35873b1939 | |
parent | 47eb3f255c09d32d9b63652f6d8624e892e500ed (diff) | |
download | php-git-e88b74b8eca6d12392659710f8d98c39d2478bf8.tar.gz |
- Go with the release of PHP 4.3.2
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | main/php_version.h | 6 |
3 files changed, 6 insertions, 6 deletions
@@ -1,6 +1,6 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? May 2003, Version 4.3.2 +29 May 2003, Version 4.3.2 - Syncronized bundled GD library with GD 2.0.12. (Ilia) - Removed support for GDLIB version 1.x.x (php_gd.dll) on Windows. (Edin) - Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows. diff --git a/configure.in b/configure.in index d235f9ca42..c4f926c045 100644 --- a/configure.in +++ b/configure.in @@ -40,8 +40,8 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=4 MINOR_VERSION=3 -RELEASE_VERSION=3 -EXTRA_VERSION="-dev" +RELEASE_VERSION=2 +EXTRA_VERSION= 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 21948517ba..2e70c9008b 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 4 #define PHP_MINOR_VERSION 3 -#define PHP_RELEASE_VERSION 3 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "4.3.3-dev" +#define PHP_RELEASE_VERSION 2 +#define PHP_EXTRA_VERSION +#define PHP_VERSION "4.3.2" |