Skip to content

Commit

Permalink
Release v1.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Oct 8, 2016
1 parent b3d8da4 commit c846710
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -7,7 +7,7 @@ Towards 1.0!
* Huge improvements in deferred value resolution (#161). [Here is](https://gist.github.com/OlegIlyenko/ea8769eec855fbe1adb304780b8b0e9d) just an example of how batching algorithm is improved in comparison to previous version. For more info see the ["Deferred Value Resolution" section of documentation](http://sangria-graphql.org/learn/#deferred-value-resolution). It got a lot of new content.
* Introduced `ExecutionScheme`. It allows to change the result type of an exaction. So now you can get some meta-information about a query execution itself, and not only the `Future` of marshaled result. For more info see the ["Alternative Execution Scheme" section of documentation](http://sangria-graphql.org/learn/#alternative-execution-scheme).
* Minor breaking changes:
* `DeferredResolver` is moved to `sangria.execution.deferred` package
* `DeferredResolver` and `Deferred` are moved to `sangria.execution.deferred` package.
* `DeferredResolver.resolve` method signature is changes a bit (2 new arguments were added). Here is the new signature:

```scala
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@
SBT Configuration:

```scala
libraryDependencies += "org.sangria-graphql" %% "sangria" % "0.7.3"
libraryDependencies += "org.sangria-graphql" %% "sangria" % "1.0.0-RC1"
```

You can find an example application that uses akka-http with sangria here:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
@@ -1,6 +1,6 @@
name := "sangria"
organization := "org.sangria-graphql"
version := "1.0.0-RC1-SNAPSHOT"
version := "1.0.0-RC1"

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

0 comments on commit c846710

Please sign in to comment.