diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a0212f3..337ab3a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning. +## [1.8.1] 2021-02-07 + +### Added + +- Downloading source code listings with debuginfod (@Foxboron) +- Added `transcript` command (@aarzilli) +- Enabled `dump` command on windows (@aarzilli) +- Env attribute in DAP launch requests (@hyangah) +- Better documentation for the DAP interface (@polinasok) + +### Fixed + +- Require argument for trace subcommand (@derekparker) +- Handling of inlined calls within inlined calls (@derekparker) +- Handling of DW_AT_inline attribute (@aarzilli) +- Set stop reason in StepInstruction (@suzmue) + +### Changed + +- The DAP interface will not create executables in the temp directory (@hyangah) +- When the `goroutines` command looks for the user frame it will exclude frames in internal and runtime/internal in addition to private runtime functions (@aarzilli) +- Breakpoints with hitcount conditions are automatically disabled when their condition can no longer be satisfied (@pippolo84) +- The commands `break` and `trace` will set a breakpoint on the current line if no argument is specified (@thockin) +- Miscellaneous documentation improvements (@chainhelen, @gareth-rees, @polinasok) + ## [1.8.0] 2021-12-23 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index 6a6c9c33..d85f1f6b 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -17,7 +17,7 @@ type Version struct { var ( // DelveVersion is the current version of Delve. DelveVersion = Version{ - Major: "1", Minor: "8", Patch: "0", Metadata: "", + Major: "1", Minor: "8", Patch: "1", Metadata: "", //TODO(aarzilli): before updating this to 1.8.0 re-enable staticcheck test Build: "$Id$", }