diff --git a/CHANGELOG.md b/CHANGELOG.md index 51b2d62268..4bacd2f5d6 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 a358c02f24..98f8ab2662 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$", } )