Skip to content

Commit 0ee23b2

Browse files
committed
Updated changelog and bumped version
1 parent 6d817d8 commit 0ee23b2

File tree

2 files changed

+4
-57
lines changed

2 files changed

+4
-57
lines changed

CodeSniffer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class PHP_CodeSniffer
6969
*
7070
* @var string
7171
*/
72-
const VERSION = '1.5.0RC4';
72+
const VERSION = '1.5.0RC5';
7373

7474
/**
7575
* Package stability; either stable or beta.

package.xml

Lines changed: 3 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -17,69 +17,16 @@ http://pear.php.net/dtd/package-2.0.xsd">
1717
<date>2013-09-26</date>
1818
<time>10:09:00</time>
1919
<version>
20-
<release>1.5.0RC4</release>
21-
<api>1.5.0RC4</api>
20+
<release>1.5.0RC5</release>
21+
<api>1.5.0RC5</api>
2222
</version>
2323
<stability>
2424
<release>beta</release>
2525
<api>beta</api>
2626
</stability>
2727
<license uri="https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt">BSD 3-Clause License</license>
2828
<notes>
29-
- You can now restrict violations to individual sniff codes using the --sniffs command line argument
30-
-- Previously, this only restricted violations to an entire sniff and not individual messages
31-
-- If you have scripts calling PHP_CodeSniffer::process() or creating PHP_CodeSniffer_File objects, you must update your code
32-
-- The array of restrictions passed to PHP_CodeSniffer::process() must now be an array of sniff codes instead of class names
33-
-- The PHP_CodeSniffer_File::__construct() method now requires an array of restrictions to be passed
34-
- Doc generation is now working again
35-
- Progress information now shows the percentage complete at the end of each line
36-
- Added report type --report=junit to show the error list in a JUnit compatible format
37-
-- Thanks to Oleg Lobach for the contribution
38-
- Added support for the PHP 5.4 callable type hint
39-
- Fixed problem where some file content could be ignored when checking STDIN
40-
- Version information is now printed when installed via composer or run from a Git clone (request #20050)
41-
- Added Squiz DisallowBooleanStatementSniff to ban boolean operators outside of control structure conditions
42-
- The CSS tokenizer is now more reliable when encountering 'list' and 'break' strings
43-
- Coding standard ignore comments can now appear instead doc blocks as well as inline comments
44-
-- Thanks to Stuart Langley for the patch
45-
- Generic LineLengthSniff now ignores SVN URL and Head URL comments
46-
-- Thanks to Karl DeBisschop for the patch
47-
- PEAR MultiLineConditionSniff now has a setting to specify how many spaces code should be indented
48-
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
49-
-- Thanks to Szabolcs Sulik for the patch
50-
- PEAR MultiLineAssignmentSniff now has a setting to specify how many spaces code should be indented
51-
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
52-
-- Thanks to Szabolcs Sulik for the patch
53-
- PEAR FunctionDeclarationSniff now has a setting to specify how many spaces code should be indented
54-
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
55-
-- Thanks to Szabolcs Sulik for the patch
56-
- Squiz SwitchDeclarationSniff now has a setting to specify how many spaces code should be indented
57-
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
58-
-- Thanks to Szabolcs Sulik for the patch
59-
- Squiz CSS IndentationSniff now has a setting to specify how many spaces code should be indented
60-
-- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
61-
-- Thanks to Hugo Fonseca for the patch
62-
- Squiz and MySource File and Function comment sniffs now allow all tags and don't require a particular licence
63-
- Squiz standard now allows lines to be 120 characters long before warning; up from 85
64-
- Squiz LowercaseStyleDefinitionSniff no longer throws errors for class names in nested style definitions
65-
- Squiz ClassFileNameSniff no longer throws errors when checking STDIN
66-
- Squiz CSS sniffs no longer generate errors for IE filters
67-
- Squiz CSS IndentationSniff no longer sees comments as blank lines
68-
- Squiz LogicalOperatorSpacingSniff now ignores whitespace at the end of a line
69-
- Squiz.Scope.MethodScope.Missing error message now mentions 'visibility' instead of 'scope modifier'
70-
-- Thanks to Renat Akhmedyanov for the patch
71-
- Added support for the PSR2 multi-line arguments errata
72-
- The PSR2 standard no longer throws errors for additional spacing after a type hint
73-
- PSR UseDeclarationSniff no longer throws errors for USE statements inside TRAITs
74-
- Fixed cases where code was incorrectly assigned the T_GOTO_LABEL token when used in a complex CASE condition
75-
- Fixed bug #20026 : Check for multi-line arrays that should be single-line is slightly wrong
76-
-- Adds new error message for single-line arrays that end with a comma
77-
- Fixed bug #20029 : ForbiddenFunction sniff incorrectly recognizes methods in USE clauses
78-
- Fixed bug #20043 : Mis-interpretation of Foo::class
79-
- Fixed bug #20044 : PSR1 camelCase check does not ignore leading underscores
80-
- Fixed bug #20045 : Errors about indentation for closures with multi-line 'use' in functions
81-
- Fixed bug #20051 : Undefined index: scope_opener / scope_closer
82-
-- Thanks to Anthon Pang for the patch
29+
- Fixed bug #20093 : Bug with ternary operator token
8330
</notes>
8431
<contents>
8532
<dir name="/">

0 commit comments

Comments
 (0)