Skip to content

Commit

Permalink
Release v1.0.0!!
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Jan 17, 2017
1 parent 1e3dbdc commit 0cae70d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,11 @@
## Upcoming
## v1.0.0 (2017-01-16)

* Added `Action.sequence` combinator to compose a list of `LeafAction`s in a single `LeadAction` that can be returned from a `resolve` function (#206)
* Support of `Option[Id]` in `Fetcher.deferOpt` (#205)
* Implicit conversion from `Future[Deferred[A]]` to `Action` does not work (#201)
* Disallow creation of object types with empty list of fields (#200)
* SimpleFetcherCache does not cache Relation (#194)
* Fetching Relation Typing (#193)
* Helper method `sangroia.schema.action` is replaced with `Action.apply` and `LeafAction.apply`

## v1.0.0-RC5 (2016-11-28)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@
SBT Configuration:

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

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

description := "Scala GraphQL implementation"
homepage := Some(url("http://sangria-graphql.org"))
Expand Down Expand Up @@ -30,18 +30,18 @@ libraryDependencies ++= Seq(
"org.parboiled" %% "parboiled" % "2.1.3",

// marshalling
"org.sangria-graphql" %% "sangria-marshalling-api" % "0.2.2",
"org.sangria-graphql" %% "sangria-marshalling-api" % "1.0.0",

// streaming
"org.sangria-graphql" %% "sangria-streaming-api" % "0.1.1",
"org.sangria-graphql" %% "sangria-streaming-api" % "1.0.0",

// testing
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.2.3" % "test",
"org.sangria-graphql" %% "sangria-spray-json" % "0.3.2" % "test",
"org.sangria-graphql" %% "sangria-ion" % "0.1.1" % "test",
"org.sangria-graphql" %% "sangria-monix" % "0.1.1" % "test",
"org.sangria-graphql" %% "sangria-rxscala" % "0.1.1" % "test",
"org.sangria-graphql" %% "sangria-marshalling-testkit" % "1.0.0" % "test",
"org.sangria-graphql" %% "sangria-spray-json" % "1.0.0" % "test",
"org.sangria-graphql" %% "sangria-ion" % "1.0.0" % "test",
"org.sangria-graphql" %% "sangria-monix" % "1.0.0" % "test",
"org.sangria-graphql" %% "sangria-rxscala" % "1.0.0" % "test",

// CATs
"net.jcazevedo" %% "moultingyaml" % "0.3.1" % "test",
Expand Down

0 comments on commit 0cae70d

Please sign in to comment.