tredoe/osutil

Missing tag v1.1.0

Closed this issue · 1 comments

Version v1.1.0 is present in https://pkg.go.dev/github.com/tredoe/osutil?tab=versions but this repository does not have a corresponding tag.
It causes an error when listing possible module updates with go list -json -m -u -mod=readonly all. GoLand runs this command very often which results in reappearing errors.

Reproduce:

main.go

package main

import (
        "fmt"
        "github.com/tredoe/osutil/user/crypt/sha512_crypt"
)

func main() {
        c := sha512_crypt.New()
        hash, _ := c.Generate([]byte("password"), []byte{})
        fmt.Println("Hash: ", hash)
}

go.mod

module example.com

go 1.21

toolchain go1.21.0

require github.com/tredoe/osutil v1.0.6
$ go mod tidy
$ go list -json -m -u -mod=readonly all
go: reading github.com/tredoe/osutil/go.mod at revision v1.1.0: unknown revision v1.1.0

Use version v1.5.0