Preparing new release » History » Version 8
cryptogopher, 2019-05-09 23:50
| 1 | 1 | cryptogopher | h1. Preparing new release |
|---|---|---|---|
| 2 | |||
| 3 | 7 | cryptogopher | # [[Common_git_operations#Merge-branch-into-master|Merge]] all outstanding branches into master, close corresponding issues. |
| 4 | 8 | cryptogopher | # Make sure all tests pass: |
| 5 | <pre> |
||
| 6 | $ RUBYOPT="-W1" rake redmine:plugins:test NAME=issue_recurring |
||
| 7 | </pre> |
||
| 8 | 2 | cryptogopher | # Update source:README.md: update *Features* and *Changelog*. |
| 9 | 1 | cryptogopher | # Bump plugin version number in source:init.rb. |
| 10 | 5 | cryptogopher | # Commit and push changes. |
| 11 | 4 | cryptogopher | # Create and push git tag with new version number: |
| 12 | <pre> |
||
| 13 | $ git tag -a 1.1 |
||
| 14 | $ git push origin 1.1 |
||
| 15 | </pre> |
||
| 16 | 1 | cryptogopher | # Update plugin information on https://redmine.org/plugins/issue-recurring |