v1.0.0 released

This commit is contained in:
Karel Pičman 2019-02-28 12:30:27 +01:00
parent 15be1cac7e
commit 334be07d45
3 changed files with 15 additions and 4 deletions

View File

@ -6,6 +6,17 @@ Changelog for Custom Workflows
----- -----
Redmine 4.0 compatibility Redmine 4.0 compatibility
* Bug: #116 - raise errors bug
* New: #114 - rails 5
* Bug: #112 - devel 1.0.0 on redmine 4.0.0 problem. bug
* New: #111 - Travis CI help wanted
* New: #109 - Redmine 4.0 compatibility enhancement
* Bug: #89 - Custom workflow for @time_entry doesn't raise on submit of issue form if spent time subform filled bug wontfix
* Bug: #88 - Rendering bug after upgrading to Redmine 3.4.2 bug
* Bug: #63 - Redmine 3.2.1 - Internal Server Error on new Issue with MS SQL bug
* Bug: #60 - Fresh new install on 3.2.2.stable don't work bug
* Bug: #46 - Error in pt-br.yml file bug
0.1.6 0.1.6
----- -----

View File

@ -22,7 +22,7 @@ Starting with version 0.1.2 you can specify observable object for workflow. Supp
Thanks to Thanks to
--------- ---------
Plugin development is supported by DOM Digital Online Media GmbH Plugin development was supported by DOM Digital Online Media GmbH
http://www.dom.de http://www.dom.de
@ -125,6 +125,6 @@ Do not forget to check whether issue is just created. Here we create the new iss
Compatibility Compatibility
------------- -------------
This plug-in is compatible with Redmine 3.4.x and 4.x.x This plug-in is compatible with Redmine 4.x.x

View File

@ -23,9 +23,9 @@ require 'redmine'
Redmine::Plugin.register :redmine_custom_workflows do Redmine::Plugin.register :redmine_custom_workflows do
name 'Redmine Custom Workflow plugin' name 'Redmine Custom Workflow plugin'
author 'Anton Argirov' author 'Anton Argirov/Karel Pičman'
description 'Allows to create custom workflows for issues, defined in the plain Ruby language' description 'Allows to create custom workflows for issues, defined in the plain Ruby language'
version '1.0.0 devel' version '1.0.0'
url 'http://www.redmine.org/plugins/custom-workflows' url 'http://www.redmine.org/plugins/custom-workflows'
# In order to the plugin in Redmine < 4 (Rails < 5), comment out the following line and modify Gemfile according to # In order to the plugin in Redmine < 4 (Rails < 5), comment out the following line and modify Gemfile according to