Skip to content

Commit 8a05410

Browse files
release: 1.2.50
1 parent df59f98 commit 8a05410

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.2.50
2+
3+
- Upgrade fmt.stub.php [(V1054.0.0)](https://github.com/driade/phpfmt8/releases/tag/v1054.0.0)
4+
15
### 1.2.49
26

37
- Upgrade fmt.stub.php [(V1053.0.0)](https://github.com/driade/phpfmt8/releases/tag/v1053.0.0)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ transformation.
180180
| YodaComparisons | Execute Yoda Comparisons. |
181181
| SpaceAfterExclamationMark | Add space after exclamation mark. |
182182
| SpaceAroundParentheses | Add spaces inside parentheses. |
183+
| IndentPipeOperator | Applies indentation to the pipe operator. |
183184
<!-- Transformations END -->
184185

185186
## Contribute

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-phpfmt",
33
"displayName": "phpfmt - PHP formatter",
4-
"version": "1.2.49",
4+
"version": "1.2.50",
55
"description": "Integrates phpfmt into VS Code",
66
"main": "./dist/extension",
77
"scripts": {
@@ -296,6 +296,7 @@
296296
"YodaComparisons",
297297
"SpaceAfterExclamationMark",
298298
"SpaceAroundParentheses",
299+
"IndentPipeOperator",
299300
"WPResizeSpaces",
300301
"AlignDoubleSlashComments",
301302
"AlignGroupDoubleArrow",
@@ -408,6 +409,7 @@
408409
"Execute Yoda Comparisons.",
409410
"Add space after exclamation mark.",
410411
"Add spaces inside parentheses.",
412+
"Applies indentation to the pipe operator.",
411413
"Core pass",
412414
"Vertically align \"//\" comments.",
413415
"Vertically align T_DOUBLE_ARROW (=>) by line groups.",
@@ -528,6 +530,7 @@
528530
"YodaComparisons",
529531
"SpaceAfterExclamationMark",
530532
"SpaceAroundParentheses",
533+
"IndentPipeOperator",
531534
"WPResizeSpaces",
532535
"AlignDoubleSlashComments",
533536
"AlignGroupDoubleArrow",
@@ -640,6 +643,7 @@
640643
"Execute Yoda Comparisons.",
641644
"Add space after exclamation mark.",
642645
"Add spaces inside parentheses.",
646+
"Applies indentation to the pipe operator.",
643647
"Core pass",
644648
"Vertically align \"//\" comments.",
645649
"Vertically align T_DOUBLE_ARROW (=>) by line groups.",

src/meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Meta info
55
export const publisher = "kokororin"
66
export const name = "vscode-phpfmt"
7-
export const version = "1.2.48"
7+
export const version = "1.2.49"
88
export const displayName = "phpfmt - PHP formatter"
99
export const description = "Integrates phpfmt into VS Code"
1010
export const extensionId = `${publisher}.${name}`

0 commit comments

Comments
 (0)