Skip to content

Commit

Permalink
Release v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Oct 23, 2016
1 parent 805918c commit b859f2b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.5.3 (2016-10-23)

* Updated `circe` to version 0.5.4

## v0.5.2 (2016-10-14)

* Encode `Double.NaN` and infinity as `null` (#2). Big thanks to @jonas for this contribution!
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
SBT Configuration:

```scala
libraryDependencies += "org.sangria-graphql" %% "sangria-circe" % "0.5.2"
libraryDependencies += "org.sangria-graphql" %% "sangria-circe" % "0.5.3"
```

## License
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "sangria-circe"
organization := "org.sangria-graphql"
version := "0.5.3-SNAPSHOT"
version := "0.5.3"

description := "Sangria circe marshalling"
homepage := Some(url("http://sangria-graphql.org"))
Expand All @@ -9,16 +9,16 @@ licenses := Seq("Apache License, ASL Version 2.0" -> url("http://www.apache.org/
scalaVersion := "2.11.8"
scalacOptions ++= Seq("-deprecation", "-feature")

val circeVersion = "0.5.3"
val circeVersion = "0.5.4"

libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria-marshalling-api" % "0.2.1",

"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,

"org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.2.1" % "test",
"org.scalatest" %% "scalatest" % "2.2.6" % "test"
"org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.2.2" % "test",
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
)

git.remoteRepo := "git@github.com:sangria-graphql/sangria-circe.git"
Expand Down

0 comments on commit b859f2b

Please sign in to comment.