Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFradet authored and dilyand committed Oct 30, 2019
1 parent 0ba7902 commit 7961782
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
15 changes: 1 addition & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit 7961782

Please sign in to comment.