From f01f9fcd98d60a9654fc923e0fca78fe481a4aee Mon Sep 17 00:00:00 2001 From: "E. Lynette Rayle" Date: Tue, 18 Jun 2024 07:24:43 -0400 Subject: [PATCH] retract v2.3.0 in v2.3.1 returning to go 1.21 There were compatibility issues with go 1.22. This retracts release v2.3.0 which used go 1.22 and adds release v2.3.1 which goes back to using go 1.21. --- README.md | 4 ++-- go.mod | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 10bc43a..9eec572 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Go Reference](https://pkg.go.dev/badge/github.com/github/go-spdx/v2@v2.3.0/spdxexp.svg)](https://pkg.go.dev/github.com/github/go-spdx/v2@v2.3.0/spdxexp) -[![Go Reference](https://pkg.go.dev/badge/github.com/github/go-spdx/v2@v2.3.0/spdxlicenses.svg)](https://pkg.go.dev/github.com/github/go-spdx/v2@v2.3.0/spdxlicenses) +[![Go Reference](https://pkg.go.dev/badge/github.com/github/go-spdx/v2@v2.3.1/spdxexp.svg)](https://pkg.go.dev/github.com/github/go-spdx/v2@v2.3.1/spdxexp) +[![Go Reference](https://pkg.go.dev/badge/github.com/github/go-spdx/v2@v2.3.1/spdxlicenses.svg)](https://pkg.go.dev/github.com/github/go-spdx/v2@v2.3.1/spdxlicenses) # go-spdx diff --git a/go.mod b/go.mod index e353dcc..d9a9532 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/github/go-spdx/v2 -go 1.22 +retract v2.3.0 // Compatibility issues with go 1.22 + +go 1.21 require github.com/stretchr/testify v1.8.0