v2.0.2 released

This commit is contained in:
Karel Pičman 2022-05-18 12:53:16 +02:00
parent 3b19b30648
commit e3e6e584d8
3 changed files with 11 additions and 7 deletions

View File

@ -1,9 +1,13 @@
Changelog for Custom Workflows Changelog for Custom Workflows
============================== ==============================
2.0.2 *????-??-??* 2.0.2 *2022-05-18*
------------------ ------------------
Ruby 3.0 compatibility
* Bug: #258 - Tried to create Proc object without a block (again and better)
2.0.1 *2022-05-13* 2.0.1 *2022-05-13*
------------------ ------------------

View File

@ -1,7 +1,7 @@
Custom Workflows plug-in Custom Workflows plug-in
======================== ========================
The current version of Redmine CustomWorkflows is **2.0.2 devel** The current version of Redmine CustomWorkflows is **2.0.2**
[![pipeline status](https://gitlab.kontron.com/redmine-plugins/redmine_custom_workflows/badges/master/pipeline.svg)](https://gitlab.kontron.com/redmine-plugins/redmine_custom_workflows/-/commits/master) [![pipeline status](https://gitlab.kontron.com/redmine-plugins/redmine_custom_workflows/badges/master/pipeline.svg)](https://gitlab.kontron.com/redmine-plugins/redmine_custom_workflows/-/commits/master)
[![Support Ukraine Badge](https://bit.ly/support-ukraine-now)](https://github.com/support-ukraine/support-ukraine) [![Support Ukraine Badge](https://bit.ly/support-ukraine-now)](https://github.com/support-ukraine/support-ukraine)
@ -20,14 +20,14 @@ Starting with version 0.1.2 you can specify observable object for workflow. Supp
* Group users (before_add, after_add, before_remove, after_remove) * Group users (before_add, after_add, before_remove, after_remove)
* \<Shared code\> * \<Shared code\>
\<Shared code\> - special type for workflows that running before all other workflows and can provide libraries of additional functions or classes. `<Shared code>` - special type for workflows that running before all other workflows and can provide libraries of additional functions or classes.
Thanks to Thanks to
--------- ---------
Plugin development was supported by DOM Digital Online Media GmbH Plugin development was supported by DOM Digital Online Media GmbH.
http://www.dom.de https://www.dom.de
Getting help Getting help
------------ ------------
@ -141,4 +141,4 @@ 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 4.1.x., 4.2.x. This plug-in is compatible with Redmine 4.1.x., 4.2.x. and 5.0.x.

View File

@ -32,7 +32,7 @@ Redmine::Plugin.register :redmine_custom_workflows do
end end
author 'Anton Argirov/Karel Pičman' author 'Anton Argirov/Karel Pičman'
description 'It allows to create custom workflows for objects, defined in a plain Ruby language' description 'It allows to create custom workflows for objects, defined in a plain Ruby language'
version '2.0.2 devel' version '2.0.2'
requires_redmine version_or_higher: '4.1.0' requires_redmine version_or_higher: '4.1.0'