Skip to content

Commit

Permalink
Add ChangeLog and LICENSE.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 12, 2011
1 parent 180c2bf commit 9266951
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
32 changes: 32 additions & 0 deletions ChangeLog.markdown
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,32 @@
PHP_CodeCoverage 1.0
====================

This is the list of changes for the PHP_CodeCoverage 1.0 release series.

PHP_CodeCoverage 1.0.3
----------------------

* Fixed GH-32: `//@codeCoverageIgnore*` (no leading space) no longer works.
* Fixed a bug in `PHP_CodeCoverage_Report_HTML_Node_File::getNumClasses()`.
* Abstract methods are now excluded from code coverage statistics.
* When the directory to which the Clover XML logfile is to be written does not exist it is created.
* Updated bundled RGraph library to version 2010-12-24.
* Updated bundled YUI library to version 2.8.2r1.

PHP_CodeCoverage 1.0.2
----------------------

* Fixed the `version_compare()` check for Xdebug 2.2.

PHP_CodeCoverage 1.0.1
----------------------

* Covered lines of uncovered files are now correctly marked as uncovered.
* Fixed the detection of uncovered files.
* A warning is now printed when Xdebug 2.2 (or later) is used and `xdebug.coverage_enable=0` is set.
* Various minor performance optimizations.

PHP_CodeCoverage 1.0.0
----------------------

* Initial release.
33 changes: 33 additions & 0 deletions LICENSE
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,33 @@
PHP_CodeCoverage

Copyright (c) 2009-2011, Sebastian Bergmann <sebastian@phpunit.de>.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.

* Neither the name of Sebastian Bergmann nor the names of his
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
2 changes: 2 additions & 0 deletions package.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@
<tasks:replace from="@package_version@" to="version" type="package-info" /> <tasks:replace from="@package_version@" to="version" type="package-info" />
</file> </file>
</dir> </dir>
<file baseinstalldir="/" name="ChangeLog.markdown" role="doc"/>
<file baseinstalldir="/" name="LICENSE" role="doc"/>
<file baseinstalldir="/" name="phpcov.php" role="script"> <file baseinstalldir="/" name="phpcov.php" role="script">
<tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config"/> <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config"/>
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config" /> <tasks:replace from="@php_bin@" to="php_bin" type="pear-config" />
Expand Down

0 comments on commit 9266951

Please sign in to comment.