Skip to content

Commit 9287b1b

Browse files
authored
Merge pull request #104 from maxmind/greg/release
Release 2.7.0.beta1
2 parents ea5d930 + a2f446a commit 9287b1b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

dev-bin/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -eu -o pipefail
55
changelog=$(cat CHANGELOG.md)
66

77
regex='
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
1717
fi
1818

1919
version="${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

2323
echo "$notes"
2424
if [[ "$date" != "$(date +"%Y-%m-%d")" ]]; then

lib/minfraud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
module Minfraud
44
# The Gem version.
5-
VERSION = '2.6.0'
5+
VERSION = '2.7.0.beta1'
66
end

0 commit comments

Comments
 (0)