Skip to content

Commit e8432dd

Browse files
authored
Merge pull request #336 from maxmind/greg/release
Release 4.0.0
2 parents 3e4726f + 69bd19f commit e8432dd

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CHANGELOG
22
=========
33

4-
4.0.0
4+
4.0.0 (2022-12-12)
55
------------------
66

77
* This library is now a Java module.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To do this, add the dependency to your pom.xml:
1717
<dependency>
1818
<groupId>com.maxmind.geoip2</groupId>
1919
<artifactId>geoip2</artifactId>
20-
<version>3.0.2</version>
20+
<version>4.0.0</version>
2121
</dependency>
2222
```
2323

@@ -30,7 +30,7 @@ repositories {
3030
mavenCentral()
3131
}
3232
dependencies {
33-
compile 'com.maxmind.geoip2:geoip2:3.0.2'
33+
compile 'com.maxmind.geoip2:geoip2:4.0.0'
3434
}
3535
```
3636

pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>com.maxmind.geoip2</groupId>
65
<artifactId>geoip2</artifactId>
7-
<version>3.0.3-SNAPSHOT</version>
6+
<version>4.0.1-SNAPSHOT</version>
87
<packaging>jar</packaging>
98
<name>MaxMind GeoIP2 API</name>
109
<description>GeoIP2 webservice client and database reader</description>
@@ -40,7 +39,7 @@
4039
<dependency>
4140
<groupId>com.maxmind.db</groupId>
4241
<artifactId>maxmind-db</artifactId>
43-
<version>2.1.0</version>
42+
<version>3.0.0</version>
4443
</dependency>
4544
<dependency>
4645
<groupId>com.fasterxml.jackson.core</groupId>

src/main/java/module-info.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
module com.maxmind.db {
1+
@SuppressWarnings("module") // suppress terminal digit warning
2+
module com.maxmind.geoip2 {
23
requires com.fasterxml.jackson.annotation;
34
requires com.fasterxml.jackson.databind;
4-
requires maxmind.db;
5+
requires com.maxmind.db;
56
requires java.net.http;
67

78
exports com.maxmind.geoip2;

0 commit comments

Comments
 (0)