Skip to content

Commit

Permalink
1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Jul 12, 2020
1 parent ba07cd6 commit 11a9855
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [1.5.1 - 2020-07-12]

#### Fixed
- `} else ` formatting problem.
- rename/references not working.

## [1.5.0 - 2020-07-11]

#### Added
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE.txt",
"version": "1.5.0",
"version": "1.5.1",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.42.0"
Expand Down Expand Up @@ -447,7 +447,7 @@
"items": {
"type": "string"
},
"description": "The include paths (as individual path items) as defined in the include_path ini setting or paths to external libraries. Used for resolving script inclusion and/or adding external symbols to folder.",
"description": "The include paths (as individual absolute path items) as defined in the include_path ini setting or paths to external libraries. Used for resolving script inclusion and/or adding external symbols to folder.",
"scope": "resource"
},
"intelephense.environment.phpVersion": {
Expand Down Expand Up @@ -775,7 +775,7 @@
},
"dependencies": {
"fs-extra": "^9.0.1",
"intelephense": "^1.5.0",
"intelephense": "^1.5.1",
"semver": "^7.3.2",
"vscode-languageclient": "^6.1.3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { createMiddleware, IntelephenseMiddleware } from './middleware';
import * as fs from 'fs-extra';

const PHP_LANGUAGE_ID = 'php';
const VERSION = '1.5.0';
const VERSION = '1.5.1';
const INDEXING_STARTED_NOTIFICATION = new NotificationType('indexingStarted');
const INDEXING_ENDED_NOTIFICATION = new NotificationType('indexingEnded');
const CANCEL_INDEXING_REQUEST = new RequestType('cancelIndexing');
Expand Down

0 comments on commit 11a9855

Please sign in to comment.