Skip to content

Commit

Permalink
Merge pull request #117 from maxmind/greg/release
Browse files Browse the repository at this point in the history
Release 2.1.0
  • Loading branch information
shadromani committed Oct 31, 2022
2 parents b601866 + 024ffe0 commit 9bfb629
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
CHANGELOG
=========
2.1.0

2.1.0 (2022-10-31)
------------------

* Messages for `DeserializationException` have been improved and the cause
* Messages for `DeserializationException` have been improved, and the cause
is included, if any. Moreover, the message provides detail about the involved
types, if the exeption is caused by an `IllegalArgumentException`.
types, if the exception is caused by an `IllegalArgumentException`.

2.0.0 (2020-10-13)
------------------
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To do this, add the dependency to your pom.xml:
<dependency>
<groupId>com.maxmind.db</groupId>
<artifactId>maxmind-db</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
```

Expand All @@ -29,7 +29,7 @@ repositories {
mavenCentral()
}
dependencies {
compile 'com.maxmind.db:maxmind-db:2.0.0'
compile 'com.maxmind.db:maxmind-db:2.1.0'
}
```

Expand Down
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.maxmind.db</groupId>
<artifactId>maxmind-db</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>MaxMind DB Reader</name>
<description>Reader for MaxMind DB</description>
Expand Down Expand Up @@ -100,6 +100,24 @@
<check />
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>initialize</phase>
<id>invoke build</id>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>git</executable>
<commandlineArgs>submodule update --init --recursive</commandlineArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
Expand Down

0 comments on commit 9bfb629

Please sign in to comment.