From 9f8398607bd6c893c13afa7a8231fa656d19585d Mon Sep 17 00:00:00 2001 From: David Michel Date: Thu, 7 Jan 2016 10:39:06 +0000 Subject: [PATCH 1/5] update travis configuration --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 6c82503..537ef4c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ rvm: - 2.1.0 env: - REDMINE_VERSION=3.2.0 VERBOSE=yes + - REDMINE_VERSION=3.1.3 VERBOSE=yes script: - export PLUGIN=redmine_scrum_cards - export WORKSPACE=$(pwd)/workspace From 985cace0d5bef4aa2e24dd0fa0c55053741152e4 Mon Sep 17 00:00:00 2001 From: David Michel Date: Thu, 7 Jan 2016 10:47:19 +0000 Subject: [PATCH 2/5] update travis configuration : use ruby version 2.2 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 537ef4c..ec77d8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: ruby rvm: - 2.1.0 + - 2.2.0 env: - REDMINE_VERSION=3.2.0 VERBOSE=yes - REDMINE_VERSION=3.1.3 VERBOSE=yes From 7a2738c7e9476ae34c0d7812ec19c720a52c3755 Mon Sep 17 00:00:00 2001 From: David Michel Date: Thu, 7 Jan 2016 11:54:18 +0100 Subject: [PATCH 3/5] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index cd3f2af..4871473 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,11 @@ Redmine plugin for generating printable scrum cards. ## Supported Redmine versions - 3.2 +- 3.1 ## Supported Ruby versions +- 2.2 - 2.1 ## How to use this plugin From 26925440fd0b17723707d3de4d4c9899cb4a243a Mon Sep 17 00:00:00 2001 From: dmichel Date: Tue, 12 Jan 2016 10:40:32 +0100 Subject: [PATCH 4/5] fixed issue with the generation of cards from multiple projects --- app/views/issues/_postit_menu.html.erb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/views/issues/_postit_menu.html.erb b/app/views/issues/_postit_menu.html.erb index 8b1a34c..a0b807f 100644 --- a/app/views/issues/_postit_menu.html.erb +++ b/app/views/issues/_postit_menu.html.erb @@ -4,7 +4,6 @@ <%= link_to "Scrum Cards", { :controller => 'postit', :action => 'generate', - :project_id => @project.id , :issues_id => @issue.nil? ? @issues.map { |issue| issue.id } : [@issue.id], }, { :class => "postit-generate-button", From 04830d9091967bb01d948b672918cd2a233dd1bb Mon Sep 17 00:00:00 2001 From: dmichel Date: Thu, 14 Jan 2016 11:10:21 +0100 Subject: [PATCH 5/5] update version number --- init.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.rb b/init.rb index 36ca133..b2f9930 100644 --- a/init.rb +++ b/init.rb @@ -3,7 +3,7 @@ name 'Redmine Scrum Cards plugin' author 'Echoes' description 'Plugin for generating printable scrum cards' - version '1.0.0' + version '1.0.1' url 'https://github.com/echoes-tech/redmine_scrum_cards' author_url 'https://github.com/echoes-tech'