Skip to content

Commit 0191c4f

Browse files
committed
Prepare for 1.5.0 release
1 parent e5bdaad commit 0191c4f

File tree

2 files changed

+48
-8
lines changed

2 files changed

+48
-8
lines changed

CodeSniffer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ class PHP_CodeSniffer
6969
*
7070
* @var string
7171
*/
72-
const VERSION = '1.5.0RC5';
72+
const VERSION = '1.5.0';
7373

7474
/**
7575
* Package stability; either stable or beta.
7676
*
7777
* @var string
7878
*/
79-
const STABILITY = 'beta';
79+
const STABILITY = 'stable';
8080

8181
/**
8282
* The file or directory that is currently being processed.

package.xml

Lines changed: 46 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2013-09-26</date>
18-
<time>10:09:00</time>
17+
<date>2013-11-28</date>
18+
<time>09:19:00</time>
1919
<version>
20-
<release>1.5.0RC5</release>
21-
<api>1.5.0RC5</api>
20+
<release>1.5.0</release>
21+
<api>1.5.0</api>
2222
</version>
2323
<stability>
24-
<release>beta</release>
25-
<api>beta</api>
24+
<release>stable</release>
25+
<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>
@@ -2253,6 +2253,46 @@ http://pear.php.net/dtd/package-2.0.xsd">
22532253
</filelist>
22542254
</phprelease>
22552255
<changelog>
2256+
<release>
2257+
<version>
2258+
<release>1.5.0</release>
2259+
<api>1.5.0R</api>
2260+
</version>
2261+
<stability>
2262+
<release>stable</release>
2263+
<api>stable</api>
2264+
</stability>
2265+
<date>2013-11-28</date>
2266+
<license uri="https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt">BSD License</license>
2267+
<notes>
2268+
- Doc generation is now working again for installed standards
2269+
-- Includes a fix for limiting the docs to specific sniffs
2270+
- Generic ScopeIndentSniff now allows for ignored tokens to be set via ruleset.xml files
2271+
-- E.g., to ignore comments, override a property using:
2272+
-- name="ignoreIndentationTokens" type="array" value="T_COMMENT,T_DOC_COMMENT"
2273+
- PSR2 standard now ignores comments when checking indentation rules
2274+
- Generic UpperCaseConstantNameSniff no longer reports errors where constants are used (request #20090)
2275+
-- It still reports errors where constants are defined
2276+
- Individual messages can now be excluded in ruleset.xml files using the exclude tag (request #20091)
2277+
-- Setting message severity to 0 continues to be supported
2278+
- Squiz OperatorSpacingSniff no longer throws errors for the ?: short ternary operator
2279+
-- Thanks to Antoine Musso for the patch
2280+
- Comment parser now supports non-English characters when splitting comment lines into words
2281+
-- Thanks to Nik Sun for the patch
2282+
- Exit statements are now recognised as valid closers for CASE and DEFAULT blocks
2283+
-- Thanks to Maksim Kochkin for the patch
2284+
- PHP_CodeSniffer_CLI::process() can now be passed an incomplete array of CLI values
2285+
-- Missing values will be set to the CLI defaults
2286+
-- Thanks to Maksim Kochkin for the patch
2287+
- Fixed bug #20093 : Bug with ternary operator token
2288+
- Fixed bug #20097 : CLI.php throws error in php 5.2
2289+
- Fixed bug #20100 : incorrect Function mysql() has been deprecated report
2290+
- Fixed bug #20119 : PHP warning: invalid argument to str_repeat() in SVN blame report with -s
2291+
- Fixed bug #20123 : PSR2 complains about an empty second statement in for-loop
2292+
- Fixed bug #20131 : PHP errors in svnblame report, if there are files not under version control
2293+
- Fixed bug #20133 : Allow "HG: hg_id" as value for @version tag
2294+
</notes>
2295+
</release>
22562296
<release>
22572297
<version>
22582298
<release>1.5.0RC4</release>

0 commit comments

Comments
 (0)