These are steps for the maintainer to take to release a new version of this gem.
- On the
main
branch, update theVERSION
constant inlib/friends/version.rb
. - Commit the change (
git add -A && git commit -m 'Bump to vX.X'
). - Add a tag (
git tag -am "vX.X" vX.X
). git push && git push --tags
- Copy the top of
CHANGELOG
to the clipboard. CHANGELOG_GITHUB_TOKEN=... github_changelog_generator --user JacobEvelyn --project friends
- Paste from the clipboard to the top of the
CHANGELOG
. - Confirm the
CHANGELOG
looks correct withgit diff
git add -A && git commit -m 'Update CHANGELOG for vX.X'
git push
gem build friends.gemspec && gem push *.gem && rm *.gem
- Celebrate!