Closed brendon closed 8 years ago
đź‘Ť
On Friday 1 April 2016, Brendon Muir notifications@github.com wrote:
@fabn https://github.com/fabn, could you run me through how the new change log generator works? I'd like to release a new gem version.
— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/swanandp/acts_as_list/issues/196
Hi @brendon detailed instructions are available here
rake release
git tag vXYZ
git push --tags
# After you get the token
export CHANGELOG_GITHUB_TOKEN="«your-40-digit-github-token»"
rake changelog
git diff # To check the changelog
git -a commit -m 'Updated changelog'
git push
Let's put this in a doc somewhere. Great job doing this @fabn!
On Friday 1 April 2016, Fabio Napoleoni notifications@github.com wrote:
Hi @brendon https://github.com/brendon detailed instructions are available [https://github.com/skywinder/github-changelog-generator] TL;DR
- Generate a github token here https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token for your github username
- Release the gem and push the tag to github
- After you pushed to github (changelog needs the tag available online) run the rake task
- Inspect and commit updated changelog
- Push it [image: :dancers:] [image: :dancers:]
rake release git tag vXYZ git push --tags# After you get the tokenexport CHANGELOG_GITHUB_TOKEN="«your-40-digit-github-token»" rake changelog git diff # To check the changelog git -a commit -m 'Updated changelog' git push
— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/swanandp/acts_as_list/issues/196#issuecomment-204431983
Indeed :) Thanks @fabn. @swanandp, I'll have a crack at the instructions then post them in the wiki once I've confirmed they're working well :)
Hi guys, I've released the 0.7.3 gem version. It looks like rake release
creates the tag in github also, so I didn't run git tag...
and git push --tags
.
The wiki page is here: https://github.com/swanandp/acts_as_list/wiki/Creating-a-new-gem-version
Let me know if there are any problems.
Nice! :fireworks:
@fabn, could you run me through how the new change log generator works? I'd like to release a new gem version.