Skip to content

Commit 9bfb629

Browse files
authored
Merge pull request #117 from maxmind/greg/release
Release 2.1.0
2 parents b601866 + 024ffe0 commit 9bfb629

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
CHANGELOG
22
=========
3-
2.1.0
3+
4+
2.1.0 (2022-10-31)
45
------------------
56

6-
* Messages for `DeserializationException` have been improved and the cause
7+
* Messages for `DeserializationException` have been improved, and the cause
78
is included, if any. Moreover, the message provides detail about the involved
8-
types, if the exeption is caused by an `IllegalArgumentException`.
9+
types, if the exception is caused by an `IllegalArgumentException`.
910

1011
2.0.0 (2020-10-13)
1112
------------------

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To do this, add the dependency to your pom.xml:
1616
<dependency>
1717
<groupId>com.maxmind.db</groupId>
1818
<artifactId>maxmind-db</artifactId>
19-
<version>2.0.0</version>
19+
<version>2.1.0</version>
2020
</dependency>
2121
```
2222

@@ -29,7 +29,7 @@ repositories {
2929
mavenCentral()
3030
}
3131
dependencies {
32-
compile 'com.maxmind.db:maxmind-db:2.0.0'
32+
compile 'com.maxmind.db:maxmind-db:2.1.0'
3333
}
3434
```
3535

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.maxmind.db</groupId>
55
<artifactId>maxmind-db</artifactId>
6-
<version>2.0.1-SNAPSHOT</version>
6+
<version>2.1.1-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<name>MaxMind DB Reader</name>
99
<description>Reader for MaxMind DB</description>
@@ -100,6 +100,24 @@
100100
<check />
101101
</configuration>
102102
</plugin>
103+
<plugin>
104+
<groupId>org.codehaus.mojo</groupId>
105+
<artifactId>exec-maven-plugin</artifactId>
106+
<version>3.0.0</version>
107+
<executions>
108+
<execution>
109+
<phase>initialize</phase>
110+
<id>invoke build</id>
111+
<goals>
112+
<goal>exec</goal>
113+
</goals>
114+
</execution>
115+
</executions>
116+
<configuration>
117+
<executable>git</executable>
118+
<commandlineArgs>submodule update --init --recursive</commandlineArgs>
119+
</configuration>
120+
</plugin>
103121
<plugin>
104122
<groupId>org.codehaus.mojo</groupId>
105123
<artifactId>versions-maven-plugin</artifactId>

0 commit comments

Comments
 (0)