Skip to content

Commit f36f431

Browse files
authored
Merge pull request #333 from maxmind/greg/release
Release 3.0.2
2 parents 476fd26 + ba0a104 commit f36f431

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
3.0.2 (2022-10-31)
5+
------------------
6+
7+
* Updated Jackson and `maxmind-db` dependencies.
8+
49
3.0.1 (2022-03-29)
510
------------------
611

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.1</version>
20+
<version>3.0.2</version>
2121
</dependency>
2222
```
2323

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

pom.xml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.maxmind.geoip2</groupId>
55
<artifactId>geoip2</artifactId>
6-
<version>3.0.2-SNAPSHOT</version>
6+
<version>3.0.3-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<name>MaxMind GeoIP2 API</name>
99
<description>GeoIP2 webservice client and database reader</description>
@@ -39,12 +39,12 @@
3939
<dependency>
4040
<groupId>com.maxmind.db</groupId>
4141
<artifactId>maxmind-db</artifactId>
42-
<version>2.0.0</version>
42+
<version>2.1.0</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>com.fasterxml.jackson.core</groupId>
4646
<artifactId>jackson-databind</artifactId>
47-
<version>2.13.4</version>
47+
<version>2.13.4.2</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>com.fasterxml.jackson.core</groupId>
@@ -199,6 +199,24 @@
199199
</execution>
200200
</executions>
201201
</plugin>
202+
<plugin>
203+
<groupId>org.codehaus.mojo</groupId>
204+
<artifactId>exec-maven-plugin</artifactId>
205+
<version>3.0.0</version>
206+
<executions>
207+
<execution>
208+
<phase>initialize</phase>
209+
<id>invoke build</id>
210+
<goals>
211+
<goal>exec</goal>
212+
</goals>
213+
</execution>
214+
</executions>
215+
<configuration>
216+
<executable>git</executable>
217+
<commandlineArgs>submodule update --init --recursive</commandlineArgs>
218+
</configuration>
219+
</plugin>
202220
<plugin>
203221
<groupId>org.codehaus.mojo</groupId>
204222
<artifactId>versions-maven-plugin</artifactId>

0 commit comments

Comments
 (0)