Skip to content

Commit

Permalink
Release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Aug 26, 2015
1 parent 97b7f7a commit d9dd126
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## v0.3.1 (2015-08-27)

* #58 - Implement CirceJsonSupport in order to be able to integrate with Circe
* #53 - Add `map` in `Action`
* #53 - Ensure Ctx proper inheritance behavior
* #33 - `grapql` string context macro to create parsed document and verify query at compile time (big thanks to @dlreeves for implementing this feature). Here is an example how you can use it:
```scala
import sangria.macros._

val queryAst = graphql"""
query FetchSomeIDQuery {
human(id: "1000") {
name
}
}
"""
```
If there is a syntax error in the query, you will see it at the compile time.

## v0.3.0 (2015-08-16)

* #45 - Added `Long` scalar type
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

SBT Configuration:

libraryDependencies += "org.sangria-graphql" %% "sangria" % "0.3.0"
libraryDependencies += "org.sangria-graphql" %% "sangria" % "0.3.1"

You can find an example application that uses akka-http with sangria here:

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "sangria"
organization := "org.sangria-graphql"
version := "0.3.1-SNAPSHOT"
version := "0.3.1"

description := "Scala GraphQL implementation"
homepage := Some(url("http://sangria-graphql.org"))
Expand Down

0 comments on commit d9dd126

Please sign in to comment.