parent
e3f4c40bad
commit
3829f4e06d
25
CHANGELOG.md
25
CHANGELOG.md
@ -4,6 +4,31 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to Semantic Versioning.
|
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
|
## [1.8.0] 2021-12-23
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -17,7 +17,7 @@ type Version struct {
|
|||||||
var (
|
var (
|
||||||
// DelveVersion is the current version of Delve.
|
// DelveVersion is the current version of Delve.
|
||||||
DelveVersion = Version{
|
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
|
//TODO(aarzilli): before updating this to 1.8.0 re-enable staticcheck test
|
||||||
Build: "$Id$",
|
Build: "$Id$",
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user