Skip to content

Commit

Permalink
Add a retract version for v2.1.0+incompatible. (#109)
Browse files Browse the repository at this point in the history
This will avoid listing this version in "go list -m -versions", which
is used by GitHub's dependabot. The "go list" is expected to list
versions oldest to newest, but it doesn't exclude the "+incompatible"
versions and treats v2.1.0 as the newest. We don't want that, 1.1 is the
latest at the moment.
  • Loading branch information
zagrodzki authored Mar 29, 2022
1 parent 6ad122d commit 844d4b8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
module github.com/google/gousb

go 1.13
go 1.16

// Released in error, v1.* remains the current version.
retract v2.1.0+incompatible

0 comments on commit 844d4b8

Please sign in to comment.