From bd20192616ba27bf1adc02828c68d500ef5f387b Mon Sep 17 00:00:00 2001 From: aarzilli Date: Mon, 12 Dec 2022 17:53:06 +0100 Subject: [PATCH] *: bump to version 1.20.1 --- CHANGELOG.md | 6 ++++++ pkg/version/version.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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$", } )