File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## v2.7.0-beta.1
3+ ## v2.7.0.beta1 (2024-09-06)
44
55* Added support for the new risk reasons outputs in minFraud Factors. The risk
66 reasons output codes and reasons are currently in beta and are subject to
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set -eu -o pipefail
55changelog=$( cat CHANGELOG.md)
66
77regex='
8- ## v([0-9]+\.[0-9]+\.[0-9]+) \(([0-9]{4}-[0-9]{2}-[0-9]{2})\)
8+ ## v([0-9]+\.[0-9]+\.[0-9]+(.[a-z0-9]+)? ) \(([0-9]{4}-[0-9]{2}-[0-9]{2})\)
99
1010((.|
1111)*)
@@ -17,8 +17,8 @@ if [[ ! $changelog =~ $regex ]]; then
1717fi
1818
1919version=" ${BASH_REMATCH[1]} "
20- date=" ${BASH_REMATCH[2 ]} "
21- notes=" $( echo " ${BASH_REMATCH[3 ]} " | sed -n -E ' /^## v[0-9]+\.[0-9]+\.[0-9]+/,$!p' ) "
20+ date=" ${BASH_REMATCH[3 ]} "
21+ notes=" $( echo " ${BASH_REMATCH[4 ]} " | sed -n -E ' /^## v[0-9]+\.[0-9]+\.[0-9]+/,$!p' ) "
2222
2323echo " $notes "
2424if [[ " $date " != " $( date +" %Y-%m-%d" ) " ]]; then
Original file line number Diff line number Diff line change 22
33module Minfraud
44 # The Gem version.
5- VERSION = '2.6.0 '
5+ VERSION = '2.7.0.beta1 '
66end
You can’t perform that action at this time.
0 commit comments