runZeroInc / recog-go

Recog-Go: Pattern Recognition using Rapid7 Recog
Other
101 stars 30 forks source link

Delete release v0.1.0 #25

Open dabdine opened 3 weeks ago

dabdine commented 3 weeks ago

Currently, go get github.com/runZeroInc/recog-go@latest (or just go get github.com/runZeroInc/recog-go) is broken, because it points to v0.1.0, which used the old package name prior to the repo move:

go: github.com/runZeroInc/recog-go@v0.1.0: parsing go.mod:
    module declares its path as: github.com/RumbleDiscovery/recog-go
            but was required as: github.com/runZeroInc/recog-go

@latest will use semver to determine what "latest" is, and v0.1.0 > v0.0.115.

Workaround is to explicitly go get: go get github.com/runZeroInc/recog-go@v0.0.115