1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00
thoughtbot--factory_bot_rails/RELEASING.md

25 lines
1,007 B
Markdown
Raw Permalink Normal View History

2018-08-16 07:27:22 -04:00
# Releasing
2019-01-05 22:54:07 -05:00
1. Update the version in the gemspec (and the factory\_bot version, if necessary)
and run `bundle install`
2018-08-16 07:27:22 -04:00
1. Update `NEWS.md` to reflect the changes since last release.
1. Commit changes.
There shouldn't be code changes,
and thus CI doesn't need to run,
2019-01-05 22:54:07 -05:00
so you can add "[ci skip]" to the commit message.
2018-08-16 07:27:22 -04:00
1. Tag the release: `git tag -s vVERSION`
- We recommend the [_quick guide on how to sign a release_] from git ready.
2019-01-05 22:54:07 -05:00
1. Push changes: `git push && git push --tags`
2018-08-16 07:27:22 -04:00
1. Build and publish:
```bash
gem build factory_bot_rails.gemspec
gem push factory_bot_rails-VERSION.gem
```
2018-08-16 07:27:22 -04:00
1. Add a new GitHub release using the recent `NEWS.md` as the content. Sample
URL: https://github.com/thoughtbot/factory_bot_rails/releases/new?tag=vVERSION
1. Announce the new release,
making sure to say "thank you" to the contributors
who helped shape this version!
[_quick guide on how to sign a release_]: http://gitready.com/advanced/2014/11/02/gpg-sign-releases.html