################################################################################
#  $Id: RELEASE_NOTES 15845 2005-04-03 17:39:36Z npac $
#  
#  Copyright(c) 2004-2005, SpikeSource Inc. All Rights Reserved.
#  Licensed under the Open Source License version 2.1
#  (See http://www.spikesource.com/license.html)
################################################################################

===============================
Spike PHPCoverage Release Notes
===============================

Version 0.6.2
===================

 * Known Issues
 --------------
   1. Incorrect execution frequency
      The code coverage execution frequency for some of the PHP lines may
      not be correct. The data retrieved from Xdebug code coverage functions
      seems to have inaccurate count of execution frequency. 

   2. Incorrect code coverage reporting [Bug #2478]
        Case 1:
          $somevar 
            += time();
        This will be reported as second line covered and first line non-executable. 
        Does not affect code-coverage reading.

        Case 2:
          $somevar
            += 2;
        This will be reported as both lines non-executable. Affects code coverage 
        reading.

