File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
- 3.2.0-beta.1
5
- ------------------
4
+ 3.2.0-beta.1 (2024-09-06)
5
+ -------------------------
6
6
7
7
* Added support for the new risk reasons outputs in minFraud Factors. The risk
8
8
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'
7
7
changelog=$( cat CHANGELOG.md)
8
8
9
9
regex='
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})\)
11
11
-*
12
12
13
13
((.|
@@ -20,8 +20,8 @@ if [[ ! $changelog =~ $regex ]]; then
20
20
fi
21
21
22
22
version=" ${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' ) "
25
25
26
26
if [[ " $date " != $( date +" %Y-%m-%d" ) ]]; then
27
27
echo " $date is not today!"
Original file line number Diff line number Diff line change 9
9
10
10
abstract class ServiceClient
11
11
{
12
- public const VERSION = 'v3.1.0 ' ;
12
+ public const VERSION = 'v3.2.0-beta.1 ' ;
13
13
14
14
/**
15
15
* @var Client
You can’t perform that action at this time.
0 commit comments