From 96a6db9d36f0eb1af544f98b1cdda0ab4bac14c6 Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Tue, 31 Oct 2023 18:15:52 +0100 Subject: [PATCH] *: release 1.21.2 (#3546) Thank you @suzmue, @hyangah, @4a6f656c and @alexandear. --- CHANGELOG.md | 18 ++++++++++++++++++ pkg/version/version.go | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51b2d622..4bacd2f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning. +## [1.21.2] 2023-10-30 + +### Added + +- DAP: add concrete type to interface type (@suzmue, #3510) +- Support for VSCode in the edit command (@derekparker, #3524) +- Follow-mode support for Windows (@aarzilli, #3507) + +### Fixed + +- Fix bugs handling stdout/stderr in DAP (@hyangah, #3522) +- Fix bug with autogenerated wrappers for methods of generic types (@aarzilli, #3528) + +### Changed + +- Use Cgo instead of C code in the FreeBSD backend (@4a6f656c, #3529) +- Remove obsolete build tags (+build) (@alexandear, #3513) + ## [1.21.1] 2023-10-3 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index a358c02f..98f8ab26 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: "21", Patch: "1", Metadata: "", + Major: "1", Minor: "21", Patch: "2", Metadata: "", Build: "$Id$", } )