Skip to content

Commit c4c1223

Browse files
committed
Preparing for 1.5.0RC1 release
1 parent fc21b65 commit c4c1223

File tree

1 file changed

+27
-33
lines changed

1 file changed

+27
-33
lines changed

package.xml

+27-33
Original file line numberDiff line numberDiff line change
@@ -14,50 +14,24 @@ http://pear.php.net/dtd/package-2.0.xsd">
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2013-02-07</date>
18-
<time>10:10:00</time>
17+
<date>2013-02-08</date>
18+
<time>14:08:00</time>
1919
<version>
20-
<release>1.4.4</release>
21-
<api>1.4.4</api>
20+
<release>1.5.0RC1</release>
21+
<api>1.5.0RC1</api>
2222
</version>
2323
<stability>
2424
<release>stable</release>
2525
<api>stable</api>
2626
</stability>
2727
<license uri="https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt">BSD 3-Clause License</license>
2828
<notes>
29+
- Reports have been completely rewritten to consume far less memory
30+
-- Each report is incrementally written to the file system during a run and then printed out when the run ends
31+
-- There is no longer a need to keep the list of errors and warnings in memory during a run
2932
- Multi-file sniff support has been removed because they are too memory intensive
3033
-- If you have a custom multi-file sniff, you can convert it into a standard sniff quite easily
3134
-- See CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php for an example
32-
- Ignored lines no longer cause the summary report to show incorrect error and warning counts
33-
-- Thanks to Bert Van Hauwaert for the patch
34-
- Added Generic CSSLintSniff to run CSSLint over a CSS file and report warnings
35-
-- Set full command to run CSSLint using phpcs --config-set csslint_path /path/to/csslint
36-
-- Thanks to Roman Levishchenko for the contribution
37-
- Added PSR2 ControlStructureSpacingSniff to ensure there are no spaces before and after parenthesis in control structures
38-
-- Fixes bug #19732 : PSR2: some control structures errors not reported
39-
- Squiz commenting sniffs now support non-English characters when checking for capital letters
40-
-- Thanks to Roman Levishchenko for the patch
41-
- Generic EndFileNewlineSniff now supports JS and CSS files
42-
-- Thanks to Denis Ryabkov for the patch
43-
- PSR1 SideEffectsSniff no longer reports constant declarations as side effects
44-
- Notifysend report now supports notify-send versions before 0.7.3
45-
-- Thanks to Ken Guest for the patch
46-
- PEAR and Squiz FunctionCommentSniffs no longer report errors for misaligned argument comments when they are blank
47-
-- Thanks to Thomas Peterson for the patch
48-
- Squiz FunctionDeclarationArgumentSpacingSniff now works correctly for equalsSpacing values greater than 0
49-
-- Thanks to Klaus Purer for the patch
50-
- Squiz SuperfluousWhitespaceSniff no longer throws errors for CSS files with no newline at the end
51-
- Squiz SuperfluousWhitespaceSniff now allows a single newline at the end of JS and CSS files
52-
- Fixed bug #19755 : Token of T_CLASS type has no scope_opener and scope_closer keys
53-
- Fixed bug #19759 : Squiz.PHP.NonExecutableCode fails for return function()...
54-
- Fixed bug #19763 : Use statements for traits not recognised correctly for PSR2 code style
55-
- Fixed bug #19764 : Instead of for traits throws uppercase constant name errors
56-
- Fixed bug #19772 : PSR2_Sniffs_Namespaces_UseDeclarationSniff does not properly recognize last use
57-
- Fixed bug #19775 : False positive in NonExecutableCode sniff when not using curly braces
58-
- Fixed bug #19782 : Invalid found size functions in loop when using object operator
59-
- Fixed bug #19799 : config folder is not created automatically
60-
- Fixed bug #19804 : JS Tokenizer wrong /**/ parsing
6135
</notes>
6236
<contents>
6337
<dir name="/">
@@ -2008,6 +1982,26 @@ http://pear.php.net/dtd/package-2.0.xsd">
20081982
</filelist>
20091983
</phprelease>
20101984
<changelog>
1985+
<release>
1986+
<version>
1987+
<release>1.5.0RC1</release>
1988+
<api>1.5.0RC1</api>
1989+
</version>
1990+
<stability>
1991+
<release>stable</release>
1992+
<api>stable</api>
1993+
</stability>
1994+
<date>2013-02-08</date>
1995+
<license uri="http://matrix.squiz.net/developer/tools/php_cs/licence">BSD License</license>
1996+
<notes>
1997+
- Reports have been completely rewritten to consume far less memory
1998+
-- Each report is incrementally written to the file system during a run and then printed out when the run ends
1999+
-- There is no longer a need to keep the list of errors and warnings in memory during a run
2000+
- Multi-file sniff support has been removed because they are too memory intensive
2001+
-- If you have a custom multi-file sniff, you can convert it into a standard sniff quite easily
2002+
-- See CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php for an example
2003+
</notes>
2004+
</release>
20112005
<release>
20122006
<version>
20132007
<release>1.4.4</release>

0 commit comments

Comments
 (0)