Skip to content

Commit 2da7473

Browse files
authored
Merge pull request #181 from maxmind/greg/release
Release 3.2.0-beta.1
2 parents 7f497a5 + 5274e85 commit 2da7473

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
CHANGELOG
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

dev-bin/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ phar='minfraud.phar'
77
changelog=$(cat CHANGELOG.md)
88

99
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})\)
1111
-*
1212
1313
((.|
@@ -20,8 +20,8 @@ if [[ ! $changelog =~ $regex ]]; then
2020
fi
2121

2222
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')"
2525

2626
if [[ "$date" != $(date +"%Y-%m-%d") ]]; then
2727
echo "$date is not today!"

src/MinFraud/ServiceClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
abstract class ServiceClient
1111
{
12-
public const VERSION = 'v3.1.0';
12+
public const VERSION = 'v3.2.0-beta.1';
1313

1414
/**
1515
* @var Client

0 commit comments

Comments
 (0)