From 2adb72d05373c119b76ed6b4b7a631d8268b0134 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Wed, 22 Sep 2021 21:05:04 -0700 Subject: [PATCH] v1.7.2 (#2708) Release v1.7.2, update CHANGELOG. --- CHANGELOG.md | 25 +++++++++++++++++++++++++ pkg/version/version.go | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f040abb..4e591889 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.7.2] 2021-09-21 + +### Added + +* Documentation: Add notes on porting Delve to other architectures (@aarzilli) +* Add internal checks to ensure we're synched with Go runtime internals (@aarzilli) +* eBPF backend can parse goroutine info (@derekparker) +* Add support for debuginfo-find (@derekparker) +* Add MAKE arguments for GOOS / GOARCH (@cmol) + +### Fixed + +* Correctly check for 1.17 and regabi (@aarzilli) +* Print config output strings quouted (@aarzilli, @krobelus) +* Update check for system goroutines (@suzmue) +* DAP: Halt before detach in Stop (@polinasok) +* DAP: Do not send halt request if debuggee is not running (@suzmue) + +### Changed + +* Include selected goroutine in threads request (@suzmue) +* Remove individual OS install instructions (@gabriel-vasile) +* DAP: Show decimal / hex values for uint (@suzmue) +* Avoid bright colors in default syntax highlighting (@krobelus) + ## [1.7.1] 2021-08-18 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index 3bde2354..5b6f24e7 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: "7", Patch: "1", Metadata: "", + Major: "1", Minor: "7", Patch: "2", Metadata: "", Build: "$Id$", } )