From c3c47e631765d72f79a0cd018cae9b8e392b4cb0 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Wed, 6 Mar 2019 14:28:59 +0100 Subject: [PATCH] Prepare for release --- CHANGELOG | 21 +++++++++++++++++++++ README.md | 4 ++-- build.sbt | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 37cc523..419bcd0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,24 @@ +Version 0.6.0 (2019-11-21) +-------------------------- +Add support for isInEuropeanUnion flag (#87) +Add support for continent and accuracyRadius to the model (#101) +Introduce tagless final encoding (#108) +Support cats.Id (#112) +Abstract over IpLookups creation (#113) +Add function to combine errors raised when processing a CityResponse (#120) +Add readme examples (#79) +Bump geoip2 to 2.12.0 (#93) +Bump cats-effect to 1.2.0 (#90) +Bump cats-core to 1.6.0 (#91) +Bump scala-lru-map to 0.3.0 (#105) +Bump specs2-core to 4.4.1 (#110) +Bump Scala to 2.12.8 and remove Scala 2.11 support (#89) +Bump SBT to 1.2.8 (#109) +Use sbt-tpolecat (#102) +Change Travis distribution to Trusty (#117) +Remove thread safety warning regarding LRU cache from readme file (#99) +Extend copyright to 2019 (#111) + Version 0.5.0 (2018-06-29) -------------------------- Add Gitter badge (#57) diff --git a/README.md b/README.md index 0852858..140df93 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.5.0** and is compatible with Scala 2.12. +The latest version of scala-maxmind-iplookups is **0.6.0** and is compatible with Scala 2.12. Add this to your SBT config: ```scala -val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.5.0" +val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.6.0" ``` Retrieve the `GeoLite2-City.mmdb` file from the [MaxMind downloads page][maxmind-downloads] diff --git a/build.sbt b/build.sbt index 11bc94c..b1ea156 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.5.0", + version := "0.6.0", description := "Scala wrapper for MaxMind GeoIP2 library", scalaVersion := "2.12.8", javacOptions := BuildSettings.javaCompilerOptions,