-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please correct the tag and add a go.mod file #1
Comments
As far as i can see 0.2.0 is set as latest release. |
Did you at least execute the command I showed you? This command installs version v0.1.0 and that happens because Go does not understand the numbering of the latest version v.0.2.0 v.0.2.0 -> Bad numbering I asked for a go.mod because I thought you were using the go-cache package but it wasn't that, it was that your example in the README is wrong.
|
sorry but I am not maintaining this any longer. It has served its purpose and will be archived |
Got some time and curiosity to play with go again. The readme file is wrong and will eb fixed and will look into your suggestion. |
Fixed |
The following command:
go get github.com/fpessolano/jac@latest
download version v0.1.0
I had to do this mischief in the
go.mod
file:require github.com/fpessolano/jac v.0.2.0
And return this:
downgrading to v0.1.1-blabla
The version "v0.1.1" is equal to v.0.2.0
Correct tag to:
v0.2.0
The text was updated successfully, but these errors were encountered: