From 3e370d338a198fd4b6d61805e8a6c686a83f3568 Mon Sep 17 00:00:00 2001 From: Oleg Ilyenko Date: Sun, 9 Aug 2015 22:22:33 +0200 Subject: [PATCH] Release v0.2.2 --- CHANGELOG.md | 5 +++++ README.md | 2 +- build.sbt | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 666aa304..bd4ad932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.2.2 (2015-08-09) + +* #44 - Add ability to add types explicitly in schema, for cases when they are not referenced anywhere else + * `Schema` now has additional argument `additionalTypes` which can be used like this: `Schema(HeroOnlyQuery, additionalTypes = Human :: Droid :: Nil)` + ## v0.2.1 (2015-08-07) * Spec changes - sew validation rules: diff --git a/README.md b/README.md index f7af49d4..f8bdd5cb 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ SBT Configuration: - libraryDependencies += "org.sangria-graphql" %% "sangria" % "0.2.1" + libraryDependencies += "org.sangria-graphql" %% "sangria" % "0.2.2" You can find an example application that uses akka-http with sangria here: diff --git a/build.sbt b/build.sbt index e90d863e..7d8a5f76 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "sangria" organization := "org.sangria-graphql" -version := "0.3.0-SNAPSHOT" +version := "0.2.2" description := "Scala GraphQL implementation" homepage := Some(url("http://sangria-graphql.org"))