From 1ac01d973a1f587fed7f8a697ba92302f3b78111 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Wed, 3 Oct 2018 16:39:57 +0100 Subject: [PATCH] Prepared for release --- CHANGELOG | 31 +++++++++++++++++++++++++++++++ README.md | 4 ++-- build.sbt | 2 +- 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d7caaa2..f2b8908 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,34 @@ +Version 0.6.0 (2018-10-03) +-------------------------- +Add code coverage reports (#144) +Add Scala version-dependent CI (#145) +Publish scaladoc (#113) +Update README (#142) +Remove usage of String as currency code, use CurrencyUnit instead (#141) +Extend copyright notices (#140) +Support Scala 2.12 (#122) +Replace twitter-utils with scala-lru-map (#125) +Make the API referentially transparent using cats-effect (#118) +Migrate to circe (#119) +Move from joda-time to java.time (#123) +Use oraclejdk8 in travis builds (#137) +Replace release badge with maven-central badge (#136) +Add CONTRIBUTING.md (#135) +Add pull request template (#134) +Add issue template (#133) +Drop support for Scala 2.10 (#132) +Replace mockito with specs2-mock (#130) +Bump specs2 version (#131) +Bump joda-convert version (#129) +Bump joda-money version (#124) +Add scalafmt (#128) +Bump sbt version to 1.2.3 (#126) +Bump sbt-bintray to 0.5.4 (#127) +Simplify .gitignore (#121) +Remove vagrant setup (#120) +Add Gitter badge (#115) +Update README markdown in according with CommonMark (#114) + Version 0.5.0 (2017-01-24) -------------------------- Bump crossScalaVersions to 2.10.6 and 2.11.8 (#102) diff --git a/README.md b/README.md index c6de8de..e7e727b 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,13 @@ There are three types of accounts supported by OER API, Unlimited, Enterprise an ### 2.2 Installation -The latest version of Scala Forex is 0.5.0, which is cross-built against 2.11.x and 2.12.x. +The latest version of Scala Forex is 0.6.0, which is cross-built against 2.11.x and 2.12.x. If you're using SBT, add the following lines to your build file: ```scala libraryDependencies ++= Seq( - "com.snowplowanalytics" %% "scala-forex" % "0.5.0" + "com.snowplowanalytics" %% "scala-forex" % "0.6.0" ) ``` diff --git a/build.sbt b/build.sbt index 529f6aa..1277317 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ lazy val root = project.in(file(".")) .enablePlugins(ScalaUnidocPlugin, GhpagesPlugin) .settings( name := "scala-forex", - version := "0.5.0", + version := "0.6.0", description := "High-performance Scala library for performing currency conversions using Open Exchange Rates" ) .settings(BuildSettings.buildSettings)