*: release 1.21.2 (#3546)

Thank you @suzmue, @hyangah, @4a6f656c and @alexandear.
This commit is contained in:
Alessandro Arzilli 2023-10-31 18:15:52 +01:00 committed by GitHub
parent 2187c75fb5
commit 96a6db9d36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 1 deletions

@ -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

@ -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$",
}
)