From 8e48ad75747fbc3d5faa07cb4f2ca8de85f25c29 Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Mon, 12 Dec 2022 18:21:46 +0100 Subject: [PATCH] *: bump to version 1.20.1 (#3213) --- CHANGELOG.md | 6 ++++++ pkg/version/version.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faa95790..76f5daee 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 8ec46ee3..96e65b6c 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$", } )