diff --git a/CHANGELOG.md b/CHANGELOG.md index 62eb5c1f..4cf48206 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2.4.1 +* Fix hover not working when using sourcemaps, and scripts are not on disk - [#309](https://github.com/Microsoft/vscode-chrome-debug/issues/309) + ## 2.4.0 * Change `experimentalSkipFiles` name to `skipFiles`, as this feature is shipping with the Node debugger in 1.8. * Fix issues with hover by correctly applying sourcemaps to scope locations - [#141](https://github.com/Microsoft/vscode-chrome-debug-core/issues/141) diff --git a/package.json b/package.json index 18da3acf..eeb715bd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "debugger-for-chrome", "displayName": "Debugger for Chrome", - "version": "2.4.0", + "version": "2.4.1", "icon": "images/icon.png", "description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.", "author": { @@ -21,7 +21,7 @@ ], "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { - "vscode-chrome-debug-core": "3.8.1", + "vscode-chrome-debug-core": "3.8.2", "vscode-debugadapter": "^1.15.0-pre.4", "vscode-debugprotocol": "^1.15.0-pre.4" },