Release v2.0.1
Overview
This updates the module name to end in /v2
. This is required by go get
when there is a major version change.
Required Action for Upgrading
Run the following to update to this release.
go get github.com/github/go-spdx/[email protected]
Details
The initial release of v2.0.0 did not update the module name. When trying to update to that version, you will see an error.
$ go get -u github.com/github/[email protected]
go: github.com/github/[email protected]: invalid version: module contains a go.mod file, so module path must match major version ("github.com/github/go-spdx/v2")
To address this, the v2.0.1 release updates the module name to end in /v2
.
What's Changed
- module name must end in v2 for latest go conventions #28 (elrayle)
Full Changelog: v2.0.0...v2.0.1