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 a5ec9dc commit 6ad6754
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Upcoming
## v1.0.0 (2017-01-16)

* Updated sangria to v1.0.0
* v1.0 Release
* Added `nodes` field to `NodeDefinition` (#18). It's a minor breaking change. Please note that because of this change the `resolve` function of `Node.definition` now should return `LeafAction` instead of `Action`. This slightly limits it's capabilities, but it was a necessary change to implement `nodes` field.

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

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

More info and the documentation can be found in the project home page:
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name := "sangria-relay"
organization := "org.sangria-graphql"
version := "1.0.0-SNAPSHOT"
version := "1.0.0"

description := "Sangria Relay Support"
homepage := Some(url("http://sangria-graphql.org"))
licenses := Seq("Apache License, ASL Version 2.0" url("http://www.apache.org/licenses/LICENSE-2.0"))

scalaVersion := "2.12.1"
crossScalaVersions := Seq("2.11.8", "2.12.0")
crossScalaVersions := Seq("2.11.8", "2.12.1")

scalacOptions ++= Seq("-deprecation", "-feature")

Expand All @@ -19,8 +19,8 @@ scalacOptions ++= {
}

libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria" % "1.0.0-SNAPSHOT",
"org.scalatest" %% "scalatest" % "3.0.0" % "test")
"org.sangria-graphql" %% "sangria" % "1.0.0",
"org.scalatest" %% "scalatest" % "3.0.1" % "test")

// Publishing

Expand Down

0 comments on commit 6ad6754

Please sign in to comment.