Skip to content

Commit

Permalink
1.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Mar 26, 2024
1 parent 6e19d71 commit 9b8978e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.10.4 - 2024-03-26]

#### Fixed
- Cannot read properties of undefined (reading kind) with `for` loops which have parse errors.

## [1.10.3 - 2024-03-25]

#### Fixed
Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"sponsor": {
"url": "https://intelephense.com"
},
"version": "1.10.3",
"version": "1.10.4",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.79.0"
Expand Down Expand Up @@ -832,7 +832,7 @@
},
"dependencies": {
"fs-extra": "~11.1.1",
"intelephense": "1.10.3",
"intelephense": "1.10.4",
"semver": "~7.5.4",
"vscode-languageclient": "~8.2.0-next.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.10.3';
const VERSION = '1.10.4';
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 9b8978e

Please sign in to comment.