-
Notifications
You must be signed in to change notification settings - Fork 208
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
Wrong latest version of package when running go mod tidy
#714
Comments
that one was supposed to be |
https://pkg.go.dev/about#removing-a-package |
github-merge-queue bot
pushed a commit
that referenced
this issue
Nov 12, 2024
# Description Add retract directive for v0.10.0, which was published accidentally. ## Related Issue Closes #714 ## Checklist - [ ] I have read the [contributing documentation](https://retina.sh/docs/contributing). - [ ] I signed and signed-off the commits (`git commit -S -s ...`). See [this documentation](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification) on signing commits. - [ ] I have correctly attributed the author(s) of the code. - [ ] I have tested the changes locally. - [ ] I have followed the project's style guidelines. - [ ] I have updated the documentation, if necessary. - [ ] I have added tests, if applicable. ## Screenshots (if applicable) or Testing Completed Please add any relevant screenshots or GIFs to showcase the changes made. ## Additional Notes Add any additional notes or context about the pull request here. --- Please refer to the [CONTRIBUTING.md](../CONTRIBUTING.md) file for more information on how to contribute to this project.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
I tried to import github.com/microsoft/retina in my go code and when I ran
go mod tidy
, I got latest version (v0.10.0) which is not right, since latest is v0.0.16To Reproduce
create a go package
import
github.com/microsoft/retina
run
go mod tidy
check go.mod:
require github.com/microsoft/retina v0.10.0
Expected behavior
After run
go mod tidy
, check go.mod:require github.com/microsoft/retina v0.0.16
Screenshots
Screenshot of pkg.go.dev where latest version is also shown as v0.10.0:
Platform (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: