Skip to content
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

remove support for go1.3 #7

Merged
merged 3 commits into from Nov 27, 2022

Conversation

thaJeztah
Copy link
Contributor

remove support for go1.3

go1.4 was released 8 Years ago, so it's very unlikely anyone is still using go1.3.

rename files to regular name, and update buildtags

This allows us to remove the buildtag comment. Also updated the other buildtags to the current go format.

⚠️ I'm doing the rename in a separate commit, to assist Git history to continue keeping track.

remove "os" import

os.Getppid() is an alias for syscall.Getppid(), which was already imported, so use it directly instead of the alias.

go1.4 was released 8 Years ago, so it's very unlikely anyone is
still using go1.3.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This allows us to remove the buildtag comment. Also updated
the other buildtags to the current go format.

Doing the rename in a separate commit, to assist Git history to
continue keeping track.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
os.Getppid() is an alias for syscall.Getppid(), which was
already imported, so use it directly instead of the alias.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
@thaJeztah
Copy link
Contributor Author

@inconshreveable PTAL 🤗

Copy link
Owner

@inconshreveable inconshreveable left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thank you!

if snapshot == uintptr(syscall.InvalidHandle) {
err = fmt.Errorf("CreateToolhelp32Snapshot: %v", e1)
return
func getProcessEntry(pid int) (*syscall.ProcessEntry32, error) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

FWIW, I'm considering a pull request in golang.org/x/sys to see if the maintainers there are open to exporting the equivalent function there. I'll let you know if they do (and open a PR here)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I opened golang/sys#143 (https://go-review.googlesource.com/c/sys/+/459039) to see if the maintainers are open to exporting it 👍

@thaJeztah
Copy link
Contributor Author

@inconshreveable thanks! Is there anything left to do on my hand, or is this OK to be merged?

If so; could you consider tagging a new release? After that I'll update some projects using it to use the new version 👍

@inconshreveable inconshreveable merged commit 4e8053e into inconshreveable:master Nov 27, 2022
@inconshreveable
Copy link
Owner

done, tagged v1.1

@thaJeztah thaJeztah deleted the remove_go1.4 branch November 29, 2022 15:52
@thaJeztah
Copy link
Contributor Author

@inconshreveable Thanks for merging! Erm.. would you be able to add a v1.0.0 tag? As v1.1 is not parsed as SemVer by go mod, so can't be used 😅

@inconshreveable
Copy link
Owner

pushed a v1.1.0 tag, lemme know if you need anything else!

@thaJeztah
Copy link
Contributor Author

Looks like we're all set, thanks! I opened spf13/cobra#1870

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants