Skip to content

Commit 3f671a6

Browse files
authored
Merge pull request #74 from PHPCSStandards/feature/release-version-1.1.1
Readme/Changelog: update for release of v 1.1.1
2 parents 6105e52 + b61f5e5 commit 3f671a6

File tree

3 files changed

+39
-27
lines changed

3 files changed

+39
-27
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ This projects adheres to [Keep a CHANGELOG](http://keepachangelog.com/) and uses
1010
_Nothing yet._
1111

1212

13+
## [1.1.1] - 2022-04-27
14+
15+
### Changed
16+
* `PHPCSDebug.Debug.TokenList`: readability improvement (alignment of content length).
17+
* All functionality is now also tested against PHP 8.1.
18+
* Update to the installation instructions to allow for Composer 2.2+.
19+
* Minor other documentation improvements.
20+
* The documentation of the project will now also be available at <https://phpcsstandards.github.io/PHPCSDevTools/>.
21+
* Miscellaneous updates to the development environment and CI scripts.
22+
23+
1324
## [1.1.0] - 2020-12-20
1425

1526
### Added
@@ -38,6 +49,7 @@ Initial release containing:
3849

3950

4051
[Unreleased]: https://github.com/PHPCSStandards/PHPCSDevTools/compare/stable...HEAD
52+
[1.1.1]: https://github.com/PHPCSStandards/PHPCSDevTools/compare/1.1.0...1.1.1
4153
[1.1.0]: https://github.com/PHPCSStandards/PHPCSDevTools/compare/1.0.1...1.1.0
4254
[1.0.1]: https://github.com/PHPCSStandards/PHPCSDevTools/compare/1.0.0...1.0.1
4355

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -145,32 +145,32 @@ The output will look something along the lines of:
145145
```
146146
Ptr | Ln | Col | Cond | ( #) | Token Type | [len]: Content
147147
-------------------------------------------------------------------------
148-
0 | L1 | C 1 | CC 0 | ( 0) | T_OPEN_TAG | [5]: <?php
149-
150-
1 | L2 | C 1 | CC 0 | ( 0) | T_WHITESPACE | [0]:
151-
152-
2 | L3 | C 1 | CC 0 | ( 0) | T_COMMENT | [32]: // Boolean not operator: All OK.
153-
154-
3 | L4 | C 1 | CC 0 | ( 0) | T_IF | [2]: if
155-
4 | L4 | C 3 | CC 0 | ( 0) | T_WHITESPACE | [1]:
156-
5 | L4 | C 4 | CC 0 | ( 0) | T_OPEN_PARENTHESIS | [1]: (
157-
6 | L4 | C 5 | CC 0 | ( 1) | T_WHITESPACE | [1]:
158-
7 | L4 | C 6 | CC 0 | ( 1) | T_CONSTANT_ENCAPSED_STRING | [4]: 'bb'
159-
8 | L4 | C 10 | CC 0 | ( 1) | T_WHITESPACE | [1]:
160-
9 | L4 | C 11 | CC 0 | ( 1) | T_IS_NOT_IDENTICAL | [3]: !==
161-
10 | L4 | C 14 | CC 0 | ( 1) | T_WHITESPACE | [1]:
162-
11 | L4 | C 15 | CC 0 | ( 1) | T_CONSTANT_ENCAPSED_STRING | [4]: 'bb'
163-
12 | L4 | C 19 | CC 0 | ( 1) | T_WHITESPACE | [1]:
164-
13 | L4 | C 20 | CC 0 | ( 0) | T_CLOSE_PARENTHESIS | [1]: )
165-
14 | L4 | C 21 | CC 0 | ( 0) | T_WHITESPACE | [1]:
166-
15 | L4 | C 22 | CC 0 | ( 0) | T_OPEN_CURLY_BRACKET | [1]: {
167-
16 | L4 | C 23 | CC 0 | ( 0) | T_WHITESPACE | [0]:
168-
169-
17 | L5 | C 1 | CC 0 | ( 0) | T_WHITESPACE | [1]: \t
170-
18 | L5 | C 2 | CC 0 | ( 0) | T_IF | [2]: if
171-
19 | L5 | C 4 | CC 0 | ( 0) | T_WHITESPACE | [1]:
172-
20 | L5 | C 5 | CC 0 | ( 0) | T_OPEN_PARENTHESIS | [1]: (
173-
21 | L5 | C 6 | CC 0 | ( 0) | T_WHITESPACE | [0]:
148+
0 | L1 | C 1 | CC 0 | ( 0) | T_OPEN_TAG | [ 5]: <?php
149+
150+
1 | L2 | C 1 | CC 0 | ( 0) | T_WHITESPACE | [ 0]:
151+
152+
2 | L3 | C 1 | CC 0 | ( 0) | T_COMMENT | [ 32]: // Boolean not operator: All OK.
153+
154+
3 | L4 | C 1 | CC 0 | ( 0) | T_IF | [ 2]: if
155+
4 | L4 | C 3 | CC 0 | ( 0) | T_WHITESPACE | [ 1]:
156+
5 | L4 | C 4 | CC 0 | ( 0) | T_OPEN_PARENTHESIS | [ 1]: (
157+
6 | L4 | C 5 | CC 0 | ( 1) | T_WHITESPACE | [ 1]:
158+
7 | L4 | C 6 | CC 0 | ( 1) | T_CONSTANT_ENCAPSED_STRING | [ 4]: 'bb'
159+
8 | L4 | C 10 | CC 0 | ( 1) | T_WHITESPACE | [ 1]:
160+
9 | L4 | C 11 | CC 0 | ( 1) | T_IS_NOT_IDENTICAL | [ 3]: !==
161+
10 | L4 | C 14 | CC 0 | ( 1) | T_WHITESPACE | [ 1]:
162+
11 | L4 | C 15 | CC 0 | ( 1) | T_CONSTANT_ENCAPSED_STRING | [ 4]: 'bb'
163+
12 | L4 | C 19 | CC 0 | ( 1) | T_WHITESPACE | [ 1]:
164+
13 | L4 | C 20 | CC 0 | ( 0) | T_CLOSE_PARENTHESIS | [ 1]: )
165+
14 | L4 | C 21 | CC 0 | ( 0) | T_WHITESPACE | [ 1]:
166+
15 | L4 | C 22 | CC 0 | ( 0) | T_OPEN_CURLY_BRACKET | [ 1]: {
167+
16 | L4 | C 23 | CC 0 | ( 0) | T_WHITESPACE | [ 0]:
168+
169+
17 | L5 | C 1 | CC 0 | ( 0) | T_WHITESPACE | [ 1]: \t
170+
18 | L5 | C 2 | CC 0 | ( 0) | T_IF | [ 2]: if
171+
19 | L5 | C 4 | CC 0 | ( 0) | T_WHITESPACE | [ 1]:
172+
20 | L5 | C 5 | CC 0 | ( 0) | T_OPEN_PARENTHESIS | [ 1]: (
173+
21 | L5 | C 6 | CC 0 | ( 0) | T_WHITESPACE | [ 0]:
174174
```
175175

176176
PHPCS itself can also display similar information using the `-vv` or `-vvv` verbosity flags, however, when using those, you will receive a *lot* more information than just the token list and, while useful for debugging PHPCS itself, the additional information is mostly just noise when developing a sniff.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0
1+
1.1.1

0 commit comments

Comments
 (0)