diff --git a/CHANGELOG.md b/CHANGELOG.md index 09555126..b5639b69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,35 @@ This project adheres to Semantic Versioning. All changes mention the author, unless contributed by me (@derekparker). +## [1.3.2] 2019-10-21 + +### Added + +- New example for starlark documentation (@aarzilli) +- Allow calls to optimized functions (@aarzilli) +- Option to bypass smart stacktraces (@aarzilli) +- Ability to call method of embedded field (@chainhelen) +- Added `make unininstall` command (@chainhelen) +- User can re-record recorded targets (@aarzilli) + +### Fixed + +- Fix version reporting (current latest tagged as 1.3.1, reporting 1.3.0) (@derekparker) +- Fix nil pointer deref on proc.GetG (@aarzilli) +- Better handling of DW_TAG_inlined_subroutine without debug_line info (@aarzilli) +- Fix panic on invalid config values (@TerrySolar) +- Fix debug_line state machine behavior with multi-sequence units (@aarzilli) +- Fix starlark iteration on maps > 64 entries (@alxn) +- debug_frame parser fixed parsing augmentation (@chainhelen) +- Round TLS segment size to its alignment (@heschik) + +### Changed + +- Documentation bumped required Go version (@codekaup) +- Disassemble now works without a selected goroutine (@aarzilli) +- Correctly mark closure variables as shadowed (@aarzilli) +- Bump CI to use Go 1.13 (@aarzilli) + ## [1.3.0] 2019-08-27 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index 2f59bfc6..569ccbd5 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -14,7 +14,7 @@ type Version struct { var ( // DelveVersion is the current version of Delve. DelveVersion = Version{ - Major: "1", Minor: "3", Patch: "0", Metadata: "", + Major: "1", Minor: "3", Patch: "2", Metadata: "", Build: "$Id$", } )