diff --git a/CHANGELOG.md b/CHANGELOG.md index faa95790ee..76f5daeeaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning. +## [1.20.1] 2022-12-12 + +### Fixed + +- Fix executing programs on macOS with most versions of debugserver installed (#3211, @aarzilli) + ## [1.20.0] 2022-12-07 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index 8ec46ee3d2..96e65b6c61 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: "20", Patch: "0", Metadata: "", + Major: "1", Minor: "20", Patch: "1", Metadata: "", Build: "$Id$", } )