Skip to content

Commit

Permalink
Version 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimcn committed Dec 28, 2020
1 parent c431d2c commit cf886f4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Release Notes

# 1.6.1

## Fixed
- Bug #395 - Size and content of std::vector is not adjusted correctly after push_back #395.
- Bug #394 - Debug adapter crash when hit breakpoint.

## New
- Added "LLDB Command Prompt" command, which opens LLDB command prompt in a terminal. This is mainly intended for
managing installed Python packages (via the `pip` command).
- Added `"lldb.evaluateForHovers"` configuration setting, which allows to disable expression evaluation for mouse hovers.
This is intended to mitigate problems similar to the one described in #353, triggered by auto-evaluation of expressions.
- Added `"lldb.commandCompletions"` configuration setting, which allows to disable command completions in the debug console.
Similarly to the previous one, this is for mitigation of LLDB crashes triggered by completions.

# 1.6.0

## Changed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
project(CodeLLDB)
enable_testing()

set(VERSION "1.6.0") # Base version
set(VERSION "1.6.1") # Base version

include(cmake/CopyFiles.cmake)

Expand Down

0 comments on commit cf886f4

Please sign in to comment.