File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4- 3.2.0-beta.1
5- ------------------
4+ 3.2.0-beta.1 (2024-09-06)
5+ -------------------------
66
77* Added support for the new risk reasons outputs in minFraud Factors. The risk
88 reasons output codes and reasons are currently in beta and are subject to
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ phar='minfraud.phar'
77changelog=$( cat CHANGELOG.md)
88
99regex='
10- ([0-9]+\.[0-9]+\.[0-9]+) \(([0-9]{4}-[0-9]{2}-[0-9]{2})\)
10+ ([0-9]+\.[0-9]+\.[0-9]+(-[^ ]+)? ) \(([0-9]{4}-[0-9]{2}-[0-9]{2})\)
1111-*
1212
1313((.|
@@ -20,8 +20,8 @@ if [[ ! $changelog =~ $regex ]]; then
2020fi
2121
2222version=" ${BASH_REMATCH[1]} "
23- date=" ${BASH_REMATCH[2 ]} "
24- notes=" $( echo " ${BASH_REMATCH[3 ]} " | sed -n -E ' /^[0-9]+\.[0-9]+\.[0-9]+/,$!p' ) "
23+ date=" ${BASH_REMATCH[3 ]} "
24+ notes=" $( echo " ${BASH_REMATCH[4 ]} " | sed -n -E ' /^[0-9]+\.[0-9]+\.[0-9]+/,$!p' ) "
2525
2626if [[ " $date " != $( date +" %Y-%m-%d" ) ]]; then
2727 echo " $date is not today!"
Original file line number Diff line number Diff line change 99
1010abstract class ServiceClient
1111{
12- public const VERSION = 'v3.1.0 ' ;
12+ public const VERSION = 'v3.2.0-beta.1 ' ;
1313
1414 /**
1515 * @var Client
You can’t perform that action at this time.
0 commit comments