Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
=========

5.2.0 (unreleased)
5.2.0 (2026-07-16)
------------------

* A new `residential` field has been added to the `Anonymizer` record. This
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To do this, add the dependency to your pom.xml:
<dependency>
<groupId>com.maxmind.geoip2</groupId>
<artifactId>geoip2</artifactId>
<version>5.1.0</version>
<version>5.2.0</version>
</dependency>
```

Expand All @@ -30,7 +30,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.maxmind.geoip2:geoip2:5.1.0'
implementation 'com.maxmind.geoip2:geoip2:5.2.0'
}
```

Expand Down
37 changes: 22 additions & 15 deletions mise.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions 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.geoip2</groupId>
<artifactId>geoip2</artifactId>
<version>5.1.0</version>
<version>5.2.0</version>
<packaging>jar</packaging>
<name>MaxMind GeoIP API</name>
<description>GeoIP webservice client and database reader</description>
Expand Down Expand Up @@ -58,17 +58,17 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.22.0</version>
<version>2.22.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.22.0</version>
<version>2.22.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.22.0</version>
<version>2.22.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand All @@ -84,7 +84,7 @@
<dependency>
<groupId>com.fasterxml.jackson.jr</groupId>
<artifactId>jackson-jr-objects</artifactId>
<version>2.22.0</version>
<version>2.22.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -103,7 +103,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Baseline version for API compatibility checking. Update after each release. -->
<japicmp.baselineVersion>5.1.0</japicmp.baselineVersion>
<japicmp.baselineVersion>5.2.0</japicmp.baselineVersion>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Updating japicmp.baselineVersion to 5.2.0 during the release preparation of 5.2.0 is premature. japicmp compares the current build artifact against the baseline version to check for binary compatibility. Since 5.2.0 is not yet released and published to Maven Central, the build will either fail to resolve the baseline artifact 5.2.0 or compare the artifact against itself (which defeats the purpose of compatibility checking).

The baseline version should remain 5.1.0 for this release, and only be updated to 5.2.0 in the next development cycle (e.g., 5.3.0-SNAPSHOT) after 5.2.0 has been successfully published.

Suggested change
<japicmp.baselineVersion>5.2.0</japicmp.baselineVersion>
<japicmp.baselineVersion>5.1.0</japicmp.baselineVersion>

</properties>
<build>
<plugins>
Expand Down
Loading