diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fd459f..a4780ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## Version 0.3.3 +- Added support for utf8 identifier names +- Implemented pipe communication as an alternative to using stdio (use `"communication": "pipe"` under `"program"`) +- No longer stepping into Lua when a sourcemap exists but the line is not mapped (use stepUnmappedLines for old behavior) +- Ensuring child processes are killed on Linux +- Fixed many bugs and improved visualization of some expressions + ## Version 0.3.2 - Added `ignorePatterns` option to skip over specified files when stepping (useful for busted) - Allowed `scriptFiles` to work with leading relative paths (`./`) diff --git a/package.json b/package.json index a4e3e06..5b61c09 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "local-lua-debugger-vscode", "publisher": "tomblind", - "version": "0.3.2", + "version": "0.3.3", "description": "Local Lua Debugger - simple Lua debugger with no dependencies", "displayName": "Local Lua Debugger", "icon": "resources/Lua-Logo_128x128.png",