diff --git a/CHANGELOG.md b/CHANGELOG.md index e62ad02..81695fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.2.1 +* Add the 'experimentalLibraryCode' launch option (see README). +* Log unhandled exceptions for [#276](https://github.com/Microsoft/vscode-chrome-debug/issues/276) +* Tweak in-box webpack configs to fit default configs that I've seen. +* Fix "Breakpoints can go to wrong lines when set in merged files on startup" [#277](https://github.com/Microsoft/vscode-chrome-debug/issues/277) + ## 2.2.0 * Implement the `.scripts` command in the debug console to print all the scripts loaded in Chrome, their sourcemap details, and inferred local paths, to make it easier to debug a project's debug config. See the README for more details. * Make the "Add watch" context menu item work much more robustly. diff --git a/package.json b/package.json index f373553..d6a2f64 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "debugger-for-chrome", "displayName": "Debugger for Chrome", - "version": "2.2.0", + "version": "2.2.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.5.5", + "vscode-chrome-debug-core": "3.6.1", "vscode-debugadapter": "^1.14.0", "vscode-debugprotocol": "^1.14.0" },