From 58856719e52385866141464f8f214a54e563de5e Mon Sep 17 00:00:00 2001 From: Oleg Ilyenko Date: Sat, 2 Apr 2016 15:54:17 +0200 Subject: [PATCH] Release v0.3.1 --- CHANGELOG.md | 4 ++++ README.md | 2 +- build.sbt | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 704d502..389f549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.3.1 (2016-04-02) + +* Updated play-json to v2.5.1 + ## v0.3.0 (2016-03-24) * Updated to sangria-marshalling-api v0.2.0 diff --git a/README.md b/README.md index c6e6c5d..a56904e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ SBT Configuration: ```scala -libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "0.3.0" +libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "0.3.1" ``` ## License diff --git a/build.sbt b/build.sbt index 3cfa40f..67ec1d7 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "sangria-play-json" organization := "org.sangria-graphql" -version := "0.3.1-SNAPSHOT" +version := "0.3.1" description := "Sangria play-json marshalling" homepage := Some(url("http://sangria-graphql.org")) @@ -11,7 +11,7 @@ scalacOptions ++= Seq("-deprecation", "-feature") libraryDependencies ++= Seq( "org.sangria-graphql" %% "sangria-marshalling-api" % "0.2.0", - "com.typesafe.play" %% "play-json" % "2.5.0", + "com.typesafe.play" %% "play-json" % "2.5.1", "org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.2.0" % "test", "org.scalatest" %% "scalatest" % "2.2.6" % "test"