Skip to content

Commit 93c12a2

Browse files
authored
Merge pull request #340 from maxmind/greg/transitive
Make maxmind-db a transitive dependency
2 parents cafb4b8 + 148c507 commit 93c12a2

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
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+
4.0.1
5+
------------------
6+
7+
* `com.maxmind.db` is now a transitive dependency of this Java module.
8+
49
4.0.0 (2022-12-12)
510
------------------
611

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,6 @@ The GeoIP2 Java API uses [Semantic Versioning](https://semver.org/).
521521

522522
## Copyright and License ##
523523

524-
This software is Copyright (c) 2013-2022 by MaxMind, Inc.
524+
This software is Copyright (c) 2013-2023 by MaxMind, Inc.
525525

526526
This is free software, licensed under the Apache License, Version 2.0.

src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module com.maxmind.geoip2 {
33
requires com.fasterxml.jackson.annotation;
44
requires com.fasterxml.jackson.databind;
5-
requires com.maxmind.db;
5+
requires transitive com.maxmind.db;
66
requires java.net.http;
77

88
exports com.maxmind.geoip2;

0 commit comments

Comments
 (0)