Skip to content

Commit

Permalink
Go with 2.4.0RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Dec 12, 2015
1 parent 88a58c1 commit c234679
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 22 deletions.
90 changes: 71 additions & 19 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,36 +33,28 @@ Xdebug also provides:
<active>yes</active>
</lead>

<date>2015-12-02</date>
<time>23:31:49</time>
<date>2015-12-12</date>
<time>20:42:33</time>
<version>
<release>2.4.0RC2</release>
<api>2.4.0RC2</api>
<release>2.4.0RC3</release>
<api>2.4.0RC3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, Dec 02, 2015 - xdebug 2.4.0RC2
Wed, Dec 12, 2015 - xdebug 2.4.0RC3

= Fixed bugs:

- Fixed issue #1181: Remote debugging does not handle exceptions after using
zend_read_property
- Fixed issue #1189: Remove address attribute from remote debugging responses
- Fixed issue #1194: The error message is doubly HTML-encoded with assert()
- Fixed issue #1210: Segfault with code coverage dead code analysis and
foreach on PHP 7
- Fixed issue #1215: SIGSEGV if xdebug.trace_output_dir directory does not
exist
- Fixed issue #1217: xdebug.show_error_trace should not be enabled by default
- Fixed issue #1218: Xdebug messes with the exception code, by casting it to
int
- Fixed issue #1219: Set default value for xdebug.overload_var_dump to 2 to
include file / line numbers by default
- Use long for PHP 5, and zend_long for PHP 7 for ini settings in the globals
- Fixed issue #1221: Sort out Windows x64 PHP 7 support
- Fixed issue #1229: Detect GCC 4.8 and disable optimisations when it is found

= Others:

- Made the test suite work for Windows too. Finally, after 13 years.
</notes>

<contents>
Expand Down Expand Up @@ -170,6 +162,66 @@ Wed, Dec 02, 2015 - xdebug 2.4.0RC2
<zendextsrcrelease />
<changelog>

<release>
<date>2015-12-02</date>
<time>23:31:49</time>
<version>
<release>2.4.0RC2</release>
<api>2.4.0RC2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, Dec 02, 2015 - xdebug 2.4.0RC2

= Fixed bugs:

- Fixed issue #1181: Remote debugging does not handle exceptions after using
zend_read_property
- Fixed issue #1189: Remove address attribute from remote debugging responses
- Fixed issue #1194: The error message is doubly HTML-encoded with assert()
- Fixed issue #1210: Segfault with code coverage dead code analysis and
foreach on PHP 7
- Fixed issue #1215: SIGSEGV if xdebug.trace_output_dir directory does not
exist
- Fixed issue #1217: xdebug.show_error_trace should not be enabled by default
- Fixed issue #1218: Xdebug messes with the exception code, by casting it to
int
- Fixed issue #1219: Set default value for xdebug.overload_var_dump to 2 to
include file / line numbers by default
- Use long for PHP 5, and zend_long for PHP 7 for ini settings in the globals
</notes>
</release>

<release>
<date>2015-12-12</date>
<time>20:42:33</time>
<version>
<release>2.4.0RC3</release>
<api>2.4.0RC3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, Dec 12, 2015 - xdebug 2.4.0RC3

= Fixed bugs:

- Fixed issue #1221: Sort out Windows x64 PHP 7 support
- Fixed issue #1229: Detect GCC 4.8 and disable optimisations when it is found

= Others:

- Made the test suite work for Windows too. Finally, after 13 years.
</notes>
</release>

<release>
<date>2015-11-21</date>
<time>23:24:57</time>
Expand Down
2 changes: 1 addition & 1 deletion php_xdebug.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#define PHP_XDEBUG_H

#define XDEBUG_NAME "Xdebug"
#define XDEBUG_VERSION "2.4.0RC3-dev"
#define XDEBUG_VERSION "2.4.0RC3"
#define XDEBUG_AUTHOR "Derick Rethans"
#define XDEBUG_COPYRIGHT "Copyright (c) 2002-2015 by Derick Rethans"
#define XDEBUG_COPYRIGHT_SHORT "Copyright (c) 2002-2015"
Expand Down
4 changes: 2 additions & 2 deletions template.rc
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
# define THANKS_GUYS ""
#endif

#define VERSIONDESC 2,4,0,6
#define VERSIONSTR "2.4.0RC3-dev"
#define VERSIONDESC 2,4,0,7
#define VERSIONSTR "2.4.0RC3"

//Version
VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit c234679

Please sign in to comment.