diff --git a/CHANGELOG b/CHANGELOG index 419bcd0..174b785 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 0.6.1 (2019-11-25) +-------------------------- +Default isInEuropeanUnion to false in case of NoSuchMethodError (#123) + Version 0.6.0 (2019-11-21) -------------------------- Add support for isInEuropeanUnion flag (#87) diff --git a/README.md b/README.md index 140df93..2fa1cd2 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,12 @@ can also configure an LRU (Least Recently Used) cache of variable size ## Installation -The latest version of scala-maxmind-iplookups is **0.6.0** and is compatible with Scala 2.12. +The latest version of scala-maxmind-iplookups is **0.6.1** and is compatible with Scala 2.12. Add this to your SBT config: ```scala -val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.6.0" +val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.6.1" ``` Retrieve the `GeoLite2-City.mmdb` file from the [MaxMind downloads page][maxmind-downloads] diff --git a/build.sbt b/build.sbt index b1ea156..e921761 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ lazy val root = project .settings( organization := "com.snowplowanalytics", name := "scala-maxmind-iplookups", - version := "0.6.0", + version := "0.6.1", description := "Scala wrapper for MaxMind GeoIP2 library", scalaVersion := "2.12.8", javacOptions := BuildSettings.javaCompilerOptions,