update go-org module to latest release #5950

Closed
opened 2025-11-02 06:41:05 -06:00 by GiteaMirror · 1 comment
Owner

Originally created by @Iced-Sun on GitHub (Sep 5, 2020).

go-org receives quite a few bug-fixes and enhancements since v0.1.9. Would it be possible to update go-org to the latest version? Thanks.

Originally created by @Iced-Sun on GitHub (Sep 5, 2020). go-org receives quite a few bug-fixes and enhancements since v0.1.9. Would it be possible to update go-org to the latest version? Thanks.
Author
Owner

@zeripath commented on GitHub (Sep 5, 2020):

Hi!

For future reference should you want to create a PR that updates a dependency do:

git checkout -b update-${dependency} master
go get -u ${dependency}
make vendor
git status
# add missing files with git add
git commit -sm'Update ${dependency}

This PR updates the ${dependency} to version ${version}.
'
git push your-fork update-${dependency}

and then open a PR for us.

It's helpful if you can add a few details about the versions changed.

@zeripath commented on GitHub (Sep 5, 2020): Hi! For future reference should you want to create a PR that updates a dependency do: ``` git checkout -b update-${dependency} master go get -u ${dependency} make vendor git status # add missing files with git add git commit -sm'Update ${dependency} This PR updates the ${dependency} to version ${version}. ' git push your-fork update-${dependency} ``` and then open a PR for us. It's helpful if you can add a few details about the versions changed.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#5950