Project

General

Profile

Preparing new release » History » Version 24

cryptogopher, 2020-04-11 20:37

1 1 cryptogopher
h1. Preparing new release
2 1 cryptogopher
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 21 cryptogopher
## Redmine 3.4: silence warnings by adding @t.warning = false@ in description of plugins tests in _./lib/tasks/redmine.rake_:
6 1 cryptogopher
<pre>
7 19 cryptogopher
desc 'Runs the plugins integration tests.'
8 19 cryptogopher
Rake::TestTask.new :integration => "db:test:prepare" do |t|
9 19 cryptogopher
  t.libs << "test"
10 19 cryptogopher
  t.verbose = true
11 19 cryptogopher
  t.warning = false
12 19 cryptogopher
  t.pattern = "plugins/#{ENV['NAME'] || '*'}/test/integration/**/*_test.rb"
13 19 cryptogopher
end
14 19 cryptogopher
</pre>
15 19 cryptogopher
## run tests:
16 19 cryptogopher
<pre>
17 24 cryptogopher
RAILS_ENV=test bundle exec rake redmine:plugins:test NAME=issue_recurring
18 24 cryptogopher
</pre>
19 24 cryptogopher
## Redmine 4.0 and above: run system tests
20 24 cryptogopher
<pre>
21 24 cryptogopher
RAILS_ENV=test bundle exec ruby plugins/issue_recurring/test/system/issue_recurrences_test.rb
22 20 cryptogopher
</pre>
23 11 cryptogopher
# [[Common_git_operations#Merge-branch-into-master|Merge]] all outstanding branches into master.
24 11 cryptogopher
# Rerun above tests on @master@ branch if there were:
25 11 cryptogopher
## multiple branches merged,
26 11 cryptogopher
## conflicts during merge.
27 12 cryptogopher
# Update source:README.md: *Features*, *Changelog* and compatibility list in *Installation* paragraphs.
28 1 cryptogopher
# Bump plugin version number in source:init.rb.
29 5 cryptogopher
# Commit and push changes.
30 4 cryptogopher
# Create and push git tag with new version number:
31 4 cryptogopher
<pre>
32 4 cryptogopher
$ git tag -a 1.1
33 4 cryptogopher
$ git push origin 1.1
34 1 cryptogopher
</pre>
35 16 cryptogopher
# Close corresponding issues (if not closed by appropriate commit messages).
36 1 cryptogopher
# Update plugin information on https://redmine.org/plugins/issue-recurring
37 14 cryptogopher
# Add release news on IT https://it.michalczyk.pro/projects/issue-recurring/news
38 17 cryptogopher
# Add new version on IT https://it.michalczyk.pro/projects/issue-recurring/settings/versions