From c4155a7711e641c12214c9b47486ba668a03e324 Mon Sep 17 00:00:00 2001 From: Eric Roberts Date: Fri, 29 Jun 2018 09:15:26 -0400 Subject: [PATCH] Prepared for release --- CHANGELOG | 18 ++++++++++++++++++ README.md | 4 ++-- build.sbt | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f7c38e1..37cc523 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +Version 0.5.0 (2018-06-29) +-------------------------- +Add Gitter badge (#57) +Fix typo in .travis.yml (#59) +Remove vagrant setup (#60) +Integrate scalafmt (#66) +Publish scaladoc to gh-pages (#40) +Integrate code coverage reports (#65) +Remove cruft from .gitignore (#75) +Switch from scalaz to cats (#61) +Add issue template (#64) +Add pull request template (#80) +Add CONTRIBUTING.md (#76) +Fix travis badge url (#83) +Encapsulate side-effects into cats-effect IO (#63) +Refactor test suite (#17) +Move away from Twitter's util-collection (#42) + Version 0.4.0 (2018-04-04) -------------------------- Upgrade to Maxmind's GeoIP2 databases (#35) diff --git a/README.md b/README.md index bfc8661..cb432dc 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ can also configure an LRU (Least Recently Used) cache of variable size ## Installation -The latest version of scala-maxmind-iplookups is **0.4.0** and is compatible with Scala 2.11 and +The latest version of scala-maxmind-iplookups is **0.5.0** and is compatible with Scala 2.11 and 2.12. Add this to your SBT config: ```scala -val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.4.0" +val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.5.0" ``` Retrieve the `GeoLite2-City.mmdb` file from the [MaxMind downloads page][maxmind-downloads] diff --git a/build.sbt b/build.sbt index e13ad8c..c7bd38e 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.4.0", + version := "0.5.0", description := "Scala wrapper for MaxMind GeoIP2 library", scalaVersion := "2.11.12", crossScalaVersions := Seq("2.11.12", "2.12.5"),