Skip to content

Commit 9d1fb69

Browse files
committed
Merge branch 'master' into report-memory-improvements
Conflicts: package.xml
2 parents 23a8926 + df764a1 commit 9d1fb69

File tree

1 file changed

+72
-2
lines changed

1 file changed

+72
-2
lines changed

package.xml

+72-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2013-07-25</date>
18-
<time>14:04:00</time>
17+
<date>2013-09-26</date>
18+
<time>10:09:00</time>
1919
<version>
2020
<release>1.5.0RC4</release>
2121
<api>1.5.0RC4</api>
@@ -388,6 +388,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
388388
<file baseinstalldir="PHP" name="LineLengthSniff.php" role="php">
389389
<tasks:replace from="@package_version@" to="version" type="package-info" />
390390
</file>
391+
<file baseinstalldir="PHP" name="LowercasedFilenameSniff.php" role="php">
392+
<tasks:replace from="@package_version@" to="version" type="package-info" />
393+
</file>
391394
<file baseinstalldir="PHP" name="OneClassPerFileSniff.php" role="php">
392395
<tasks:replace from="@package_version@" to="version" type="package-info" />
393396
</file>
@@ -608,6 +611,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
608611
<file baseinstalldir="PHP" name="LineLengthUnitTest.php" role="test">
609612
<tasks:replace from="@package_version@" to="version" type="package-info" />
610613
</file>
614+
<file baseinstalldir="PHP" name="LowercasedFilenameUnitTest.inc" role="test" />
615+
<file baseinstalldir="PHP" name="LowercasedFilenameUnitTest.php" role="test">
616+
<tasks:replace from="@package_version@" to="version" type="package-info" />
617+
</file>
611618
<file baseinstalldir="PHP" name="OneClassPerFileUnitTest.inc" role="test" />
612619
<file baseinstalldir="PHP" name="OneClassPerFileUnitTest.php" role="test">
613620
<tasks:replace from="@package_version@" to="version" type="package-info" />
@@ -1195,6 +1202,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
11951202
</file>
11961203
</dir>
11971204
<dir name="Methods">
1205+
<file baseinstalldir="PHP" name="FunctionCallSignatureSniff.php" role="php">
1206+
<tasks:replace from="@package_version@" to="version" type="package-info" />
1207+
</file>
11981208
<file baseinstalldir="PHP" name="MethodDeclarationSniff.php" role="php">
11991209
<tasks:replace from="@package_version@" to="version" type="package-info" />
12001210
</file>
@@ -1244,6 +1254,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
12441254
</file>
12451255
</dir>
12461256
<dir name="Methods">
1257+
<file baseinstalldir="PHP" name="FunctionCallSignatureUnitTest.inc" role="test" />
1258+
<file baseinstalldir="PHP" name="FunctionCallSignatureUnitTest.php" role="test">
1259+
<tasks:replace from="@package_version@" to="version" type="package-info" />
1260+
</file>
12471261
<file baseinstalldir="PHP" name="MethodDeclarationUnitTest.inc" role="test" />
12481262
<file baseinstalldir="PHP" name="MethodDeclarationUnitTest.php" role="test">
12491263
<tasks:replace from="@package_version@" to="version" type="package-info" />
@@ -2415,6 +2429,62 @@ http://pear.php.net/dtd/package-2.0.xsd">
24152429
-- See CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php for an example
24162430
</notes>
24172431
</release>
2432+
<release>
2433+
<version>
2434+
<release>1.4.7</release>
2435+
<api>1.4.7</api>
2436+
</version>
2437+
<stability>
2438+
<release>stable</release>
2439+
<api>stable</api>
2440+
</stability>
2441+
<date>2013-09-26</date>
2442+
<license uri="https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt">BSD License</license>
2443+
<notes>
2444+
- Added report type --report=junit to show the error list in a JUnit compatible format
2445+
-- Thanks to Oleg Lobach for the contribution
2446+
- Added support for the PHP 5.4 callable type hint
2447+
- Fixed problem where some file content could be ignored when checking STDIN
2448+
- Version information is now printed when installed via composer or run from a Git clone (request #20050)
2449+
- The CSS tokenizer is now more reliable when encountering 'list' and 'break' strings
2450+
- Coding standard ignore comments can now appear instead doc blocks as well as inline comments
2451+
-- Thanks to Stuart Langley for the patch
2452+
- Generic LineLengthSniff now ignores SVN URL and Head URL comments
2453+
-- Thanks to Karl DeBisschop for the patch
2454+
- PEAR MultiLineConditionSniff now has a setting to specify how many spaces code should be indented
2455+
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2456+
-- Thanks to Szabolcs Sulik for the patch
2457+
- PEAR MultiLineAssignmentSniff now has a setting to specify how many spaces code should be indented
2458+
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2459+
-- Thanks to Szabolcs Sulik for the patch
2460+
- PEAR FunctionDeclarationSniff now has a setting to specify how many spaces code should be indented
2461+
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2462+
-- Thanks to Szabolcs Sulik for the patch
2463+
- Squiz SwitchDeclarationSniff now has a setting to specify how many spaces code should be indented
2464+
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2465+
-- Thanks to Szabolcs Sulik for the patch
2466+
- Squiz CSS IndentationSniff now has a setting to specify how many spaces code should be indented
2467+
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2468+
-- Thanks to Hugo Fonseca for the patch
2469+
- Squiz and MySource File and Function comment sniffs now allow all tags and don't require a particular licence
2470+
- Squiz LowercaseStyleDefinitionSniff no longer throws errors for class names in nested style definitions
2471+
- Squiz ClassFileNameSniff no longer throws errors when checking STDIN
2472+
- Squiz CSS sniffs no longer generate errors for IE filters
2473+
- Squiz CSS IndentationSniff no longer sees comments as blank lines
2474+
- Squiz LogicalOperatorSpacingSniff now ignores whitespace at the end of a line
2475+
- Squiz.Scope.MethodScope.Missing error message now mentions 'visibility' instead of 'scope modifier'
2476+
-- Thanks to Renat Akhmedyanov for the patch
2477+
- Added support for the PSR2 multi-line arguments errata
2478+
- The PSR2 standard no longer throws errors for additional spacing after a type hint
2479+
- PSR UseDeclarationSniff no longer throws errors for USE statements inside TRAITs
2480+
- Fixed bug #20026 : Check for multi-line arrays that should be single-line is slightly wrong
2481+
-- Adds new error message for single-line arrays that end with a comma
2482+
- Fixed bug #20029 : ForbiddenFunction sniff incorrectly recognizes methods in USE clauses
2483+
- Fixed bug #20043 : Mis-interpretation of Foo::class
2484+
- Fixed bug #20044 : PSR1 camelCase check does not ignore leading underscores
2485+
- Fixed bug #20045 : Errors about indentation for closures with multi-line 'use' in functions
2486+
</notes>
2487+
</release>
24182488
<release>
24192489
<version>
24202490
<release>1.4.6</release>

0 commit comments

Comments
 (0)