Preparing new release » History » Version 26
cryptogopher, 2022-07-24 20:39
1 | 1 | cryptogopher | h1. Preparing new release |
---|---|---|---|
2 | |||
3 | 23 | cryptogopher | # Sync locale strings across language files (add test to check for differences? or execute system tests in different locales?). |
4 | 21 | cryptogopher | # Make sure all tests pass on each merged issue branch, on all supported Redmine versions: |
5 | 19 | cryptogopher | ## run tests: |
6 | <pre> |
||
7 | RAILS_ENV=test bundle exec rake redmine:plugins:test NAME=issue_recurring |
||
8 | 24 | cryptogopher | </pre> |
9 | 26 | cryptogopher | ## (only for Redmine 4.0) run system tests separately: |
10 | 24 | cryptogopher | <pre> |
11 | RAILS_ENV=test bundle exec ruby plugins/issue_recurring/test/system/issue_recurrences_test.rb |
||
12 | 20 | cryptogopher | </pre> |
13 | 11 | cryptogopher | # [[Common_git_operations#Merge-branch-into-master|Merge]] all outstanding branches into master. |
14 | # Rerun above tests on @master@ branch if there were: |
||
15 | ## multiple branches merged, |
||
16 | ## conflicts during merge. |
||
17 | 12 | cryptogopher | # Update source:README.md: *Features*, *Changelog* and compatibility list in *Installation* paragraphs. |
18 | 1 | cryptogopher | # Bump plugin version number in source:init.rb. |
19 | 5 | cryptogopher | # Commit and push changes. |
20 | 4 | cryptogopher | # Create and push git tag with new version number: |
21 | <pre> |
||
22 | $ git tag -a 1.1 |
||
23 | $ git push origin 1.1 |
||
24 | 1 | cryptogopher | </pre> |
25 | 16 | cryptogopher | # Close corresponding issues (if not closed by appropriate commit messages). |
26 | 1 | cryptogopher | # Update plugin information on https://redmine.org/plugins/issue-recurring |
27 | 14 | cryptogopher | # Add release news on IT https://it.michalczyk.pro/projects/issue-recurring/news |
28 | 17 | cryptogopher | # Add new version on IT https://it.michalczyk.pro/projects/issue-recurring/settings/versions |