From fec2f2075aefe22e399921b89fc57f9f4a8e18ae Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Fri, 27 Sep 2024 10:52:30 +0200 Subject: [PATCH] Update build tags to support future Go versions Modified the build tags to exclude Go 1.20 and above instead of targeting only Go 1.19. This change ensures the code is compatible with future versions of Go by not restricting it to a specific minor version. --- random_119.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/random_119.go b/random_119.go index b084305..4b45c55 100644 --- a/random_119.go +++ b/random_119.go @@ -2,8 +2,8 @@ // // SPDX-License-Identifier: MIT -//go:build go1.19 && !go1.20 -// +build go1.19,!go1.20 +//go:build !go1.20 +// +build !go1.20 package mail