diff --git a/CHANGELOG.md b/CHANGELOG.md index 30e62dc..bb7fffa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.7.3 (2016-08-26) + +* Updated sangria to v0.7.3 + ## v0.7.2 (2016-08-01) * Updated sangria to v0.7.2 diff --git a/README.md b/README.md index 756b4af..ebb59bd 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ SBT Configuration: ```scala -libraryDependencies += "org.sangria-graphql" %% "sangria-relay" % "0.7.2" +libraryDependencies += "org.sangria-graphql" %% "sangria-relay" % "0.7.3" ``` More info and the documentation can be found in the project home page: diff --git a/build.sbt b/build.sbt index 482b64a..247335d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "sangria-relay" organization := "org.sangria-graphql" -version := "0.7.3-SNAPSHOT" +version := "0.7.3" description := "Sangria Relay Support" homepage := Some(url("http://sangria-graphql.org")) @@ -10,7 +10,7 @@ scalaVersion := "2.11.8" scalacOptions ++= Seq("-deprecation", "-feature") libraryDependencies ++= Seq( - "org.sangria-graphql" %% "sangria" % "0.7.2", + "org.sangria-graphql" %% "sangria" % "0.7.3", "org.scalatest" %% "scalatest" % "2.2.6" % "test" )