From 79617825b1a583a60836ec9799760cc364d00f19 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 9 Apr 2019 15:14:48 +0200 Subject: [PATCH] Prepare for release --- CHANGELOG | 19 +++++++++++++++++++ README.md | 15 +-------------- build.sbt | 2 +- 3 files changed, 21 insertions(+), 15 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a62c9d3..b2c485f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,22 @@ +Version 0.6.0 (2019-10-31) +-------------------------- +Provide a way to create a Parser using cats.Eval (#67) +Abstract over Parser creation (#72) +Expose Medium in Referer (#71) +Do not double decode query string (#73) +Re-establish the ParseTest suite (#74) +Update README to reflect 0.6.0 changes (#88) +Use sbt-tpolecat (#62) +Bump cats-core to 1.6.0 (#63) +Bump cats-effect to 1.2.0 (#64) +Bump circe to 0.11.1 (#65) +Bump specs2 to 4.4.1 (#66) +Bump SBT to 1.2.8 (#68) +Change Travis distribution to Trusty (#87) +Fix artifact name in README (#85) +Fix typo in Parser comment (#86) +Extend copyright to 2019 (#69) + Version 0.5.0 (2019-01-08) -------------------------- Make the Medium enumeration public (#47) diff --git a/README.md b/README.md index d940df4..da9435f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ The implementation uses a JSON version of the shared 'database' of known referer The Scala implementation is a core component of [Snowplow][snowplow], the open-source web-scale analytics platform. -======= ### Installation You can add the following to your SBT config: @@ -68,21 +67,9 @@ More examples can be seen in [ParseTest.scala][parsetest-scala]. See [Parser.sca [parsetest-scala]: src/test/scala/com/snowplowanalytics/refererparser/ParseTest.scala [parser-scala]: src/main/scala/com/snowplowanalytics/refererparser/Parser.scala -### Installation - -Add this to your SBT config: - -```scala -val refererParser = "com.snowplowanalytics" %% "referer-parser" % "0.5.0" -``` - ## Contributing -1. Fork it -2. Create your feature branch (`git checkout -b my-new-feature`) -3. Commit your changes (`git commit -am 'Add some feature'`) -4. Push to the branch (`git push origin my-new-feature`) -5. Create new Pull Request +Check out [our contributing guide](CONTRIBUTING.md). ## Copyright and license diff --git a/build.sbt b/build.sbt index d690686..5c28faf 100644 --- a/build.sbt +++ b/build.sbt @@ -18,7 +18,7 @@ val root = (project in file(".")). settings( name := "scala-referer-parser", organization := "com.snowplowanalytics", - version := "0.5.0", + version := "0.6.0", description := "Library for extracting marketing attribution data from referer URLs", scalaVersion := "2.12.8", crossScalaVersions := Seq("2.11.12", "2.12.8"),