Skip to content

Commit c0b17e8

Browse files
committed
Remove dot in qualifier to hopefully fix Sonatype issues
1 parent 2b69b73 commit c0b17e8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

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-
2.8.0-rc.1 (2016-06-20)
5-
-----------------------
4+
2.8.0-rc1 (2016-06-20)
5+
----------------------
66

77
* IMPORTANT: Java 7 is now required. If you need Java 6 support, please
88
continue using 2.7.0 or earlier.

dev-bin/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
VERSION=$(perl -MFile::Slurp::Tiny=read_file -MDateTime <<EOF
66
use v5.16;
77
my \$log = read_file(q{CHANGELOG.md});
8-
\$log =~ /\n(\d+\.\d+\.\d+(?:-[\d\w\.]+)) \((\d{4}-\d{2}-\d{2})\)\n/;
8+
\$log =~ /\n(\d+\.\d+\.\d+(?:-[\w\.\-]+)) \((\d{4}-\d{2}-\d{2})\)\n/;
99
die 'Release time is not today!' unless DateTime->now->ymd eq \$2;
1010
say \$1;
1111
EOF
@@ -59,7 +59,7 @@ EOF
5959
export VERSION
6060
# alter the documentation to point to this version
6161
perl -pi -e 's/(?<=<version>)[^<]*/$ENV{VERSION}/' README.md
62-
perl -pi -e 's/(?<=com\.maxmind\.geoip2\:geoip2\:)\d+\.\d+\.\d+([\w\-]+)?/$ENV{VERSION}/' README.md
62+
perl -pi -e 's/(?<=com\.maxmind\.geoip2\:geoip2\:)\d+\.\d+\.\d+([\w\-\.]+)?/$ENV{VERSION}/' README.md
6363
cat README.md >> $PAGE
6464

6565
if [ -n "$(git status --porcelain)" ]; then

0 commit comments

Comments
 (0)