Skip to content

Commit 98142a8

Browse files
Updated version to match Maven version
1 parent c8f8130 commit 98142a8

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

com/ip2location/Country.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* <p>
1818
*
1919
* @author IP2Location.com
20-
* @version 8.11.0
20+
* @version 8.11.1
2121
*/
2222
public class Country {
2323
private final Map<String, Map<String, String>> records = new HashMap<>();

com/ip2location/IP2Location.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* <p>
3535
*
3636
* @author IP2Location.com
37-
* @version 8.11.0
37+
* @version 8.11.1
3838
*/
3939
public class IP2Location {
4040
private static final Pattern pattern = Pattern.compile("^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"); // IPv4

com/ip2location/IP2LocationWebService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* <p>
2727
*
2828
* @author IP2Location.com
29-
* @version 8.11.0
29+
* @version 8.11.1
3030
*/
3131
public class IP2LocationWebService {
3232
private static final Pattern pattern = Pattern.compile("^[\\dA-Z]{10}$");

com/ip2location/IPResult.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* <p>
88
*
99
* @author IP2Location.com
10-
* @version 8.11.0
10+
* @version 8.11.1
1111
*/
1212
public class IPResult {
1313
static final String NOT_SUPPORTED = "Not_Supported";
@@ -39,7 +39,7 @@ public class IPResult {
3939
String as;
4040
String status;
4141
boolean delay = false;
42-
String version = "Version 8.11.0";
42+
String version = "Version 8.11.1";
4343

4444
IPResult(String ipstring) {
4545
ip_address = ipstring;

com/ip2location/IPTools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* <p>
3333
*
3434
* @author IP2Location.com
35-
* @version 8.11.0
35+
* @version 8.11.1
3636
*/
3737
public class IPTools {
3838
private static final BigInteger MAX_IPV4_RANGE = new BigInteger("4294967295");

com/ip2location/Region.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* <p>
1515
*
1616
* @author IP2Location.com
17-
* @version 8.11.0
17+
* @version 8.11.1
1818
*/
1919
public class Region {
2020
private final Map<String, List<Map<String, String>>> records = new HashMap<>();

0 commit comments

Comments
 (0)