Skip to content

Commit

Permalink
changelog, dependencies, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Jul 9, 2019
1 parent a885890 commit 9f373a3
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 51 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [1.1.2 - 2019-07-09]

#### Changed
* Updated stubs.

#### fixed
* Bad formatting in mixed JS/PHP script block.
* Copy and paste argument inserts a space in front of it.
* False undefined variable for anon. use variables when anon function is in script scope.
* Path intellisense for windows paths.
* Cannot read property codePointAt of undefined.
* False unused variable diagnostics when assigning to array.

## [1.1.1 - 2019-06-27]

#### Changed
Expand Down
88 changes: 44 additions & 44 deletions package-lock.json

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

12 changes: 6 additions & 6 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.1.1",
"version": "1.1.2",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.33.0"
Expand Down Expand Up @@ -278,19 +278,19 @@
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.10",
"@types/node": "^10.14.12",
"@types/semver": "^6.0.1",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"typescript": "^3.5.3",
"vscode": "^1.1.35",
"webpack": "^4.35.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"fs-extra": "^8.0.1",
"fs-extra": "^8.1.0",
"intelephense": "^1.1.1",
"semver": "^6.1.2",
"semver": "^6.2.0",
"vscode-languageclient": "^5.3.0-next.6"
},
"private": true
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { createMiddleware, IntelephenseMiddleware } from './middleware';
import * as fs from 'fs-extra';

const PHP_LANGUAGE_ID = 'php';
const VERSION = '1.1.1';
const VERSION = '1.1.2';
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 9f373a3

Please sign in to comment.