cvs: pear /PHP_CodeSniffer package.xml
[email protected] ("Greg Sherwood")
| Newsgroups | php.pear.cvs |
|---|---|
| Message-ID | <cvssquiz1210641021@cvsserver> |
squiz Tue May 13 01:10:21 2008 UTC
Modified files:
/pear/PHP_CodeSniffer package.xml
Log:
Update for 1.1.0RC1 release
http://cvs.php.net/viewvc.cgi/pear/PHP_CodeSniffer/package.xml?r1=1.271&r2=1.272&diff_format=u
Index: pear/PHP_CodeSniffer/package.xml
diff -u pear/PHP_CodeSniffer/package.xml:1.271 pear/PHP_CodeSniffer/package.xml:1.272
--- pear/PHP_CodeSniffer/package.xml:1.271 Thu May 8 04:00:39 2008
+++ pear/PHP_CodeSniffer/package.xml Tue May 13 01:10:21 2008
@@ -20,8 +20,8 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
- <date>2008-04-21</date>
- <time>10:44:00</time>
+ <date>2008-05-13</date>
+ <time>11:07:00</time>
<version>
<release>1.1.0RC1</release>
<api>1.1.0RC1</api>
@@ -39,7 +39,7 @@
- MySource IncludeSystemSniff now ignores usage of ZipArchive
- Removed "function" from error messages for Generic function brace sniffs (feature request #13820)
- Generic UpperCaseConstantSniff no longer throws errors for delcare(ticks = ...)
- - Thanks to Josh Snyder for the patch
+ -- Thanks to Josh Snyder for the patch
- Squiz ClosingDeclarationCommentSniff and AbstractVariableSniff now throw warnings for possible parse errors
- Fixed bug #13827 : AbstractVariableSniff throws "undefined index"
- Fixed bug #13846 : Bug in Squiz.NonExecutableCodeSniff
@@ -1400,13 +1400,39 @@
<date>2008-04-21</date>
<license uri="http://matrix.squiz.net/developer/tools/php_cs/licence">BSD License</license>
<notes>
+ - Fixed error in PEAR ValidClassNameSniff when checking class names with double underscores
+ - Moved Squiz InlineControlStructureSniff into Generic standard
+ - PEAR standard now throws warnings for inline control structures
+ - Squiz OutputBufferingIndentSniff now ignores the indentation of inline HTML
+ - MySource IncludeSystemSniff now ignores usage of ZipArchive
+ - Removed "function" from error messages for Generic function brace sniffs (feature request #13820)
+ - Generic UpperCaseConstantSniff no longer throws errors for delcare(ticks = ...)
+ -- Thanks to Josh Snyder for the patch
+ - Squiz ClosingDeclarationCommentSniff and AbstractVariableSniff now throw warnings for possible parse errors
+ - Fixed bug #13827 : AbstractVariableSniff throws "undefined index"
+ - Fixed bug #13846 : Bug in Squiz.NonExecutableCodeSniff
+ - Fixed bug #13849 : infinite loop in PHP_CodeSniffer_File::findNext()
+ </notes>
+ </release>
+ <release>
+ <version>
+ <release>1.1.0RC1</release>
+ <api>1.1.0RC1</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <date>2008-05-13</date>
+ <license uri="http://matrix.squiz.net/developer/tools/php_cs/licence">BSD License</license>
+ <notes>
- Added support for multiple tokenizers so PHP_CodeSniffer can check more than just PHP files
- -- PHP_CodeSniffer now has a JS tokenizer for checking JavaScript files
- -- Sniffs need to be updated to work with additional tokenizers, or new sniffs written for them
+ -- PHP_CodeSniffer now has a JS tokenizer for checking JavaScript files
+ -- Sniffs need to be updated to work with additional tokenizers, or new sniffs written for them
- phpcs now exits with status 2 if the tokenier extension has been disabled (feature request #13269)
- Added scripts/phpcs-svn-pre-commit that can be used as an SVN pre-commit hook
- - Also reworked the way the phpcs script works to make it easier to wrap it with other functionality
- - Thanks to Jack Bates for the contribution
+ -- Also reworked the way the phpcs script works to make it easier to wrap it with other functionality
+ -- Thanks to Jack Bates for the contribution
- Fixed error in phpcs error message when a supplied file does not exist
- Fixed a cosmetic error in AbstractPatternSniff where the "found" string was missing some content
- Added sniffs that implement part of the PMD rule catalog to the Generic standard