Skip to content

Commit

Permalink
Release 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Aug 13, 2018
1 parent 3893920 commit b61471a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: scala
scala:
- 2.12.6
- 2.11.12
- 2.11.11
jdk:
- oraclejdk8
- oraclejdk10
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Upcoming
## v1.4.2 (2018-08-13)

* Removed `InterfaceMustHaveImplementationValidationRule` validation rule **(spec change)** (#379). Since its introduction in previous release, it caused some issues (to sangria users as well users of other implementations). So it was removed from the GraphQL spec and sangria for now.
* Exposed more contextual information to a fetcher, including fetcher cache (#377). Fetcher now can be created with a set of new helper methods `*WithContext` which provide `FetcherContext` as an argument to fetch functions.
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" % "1.4.1"
libraryDependencies += "org.sangria-graphql" %% "sangria" % "1.4.2"
```

You can find an example application that uses akka-http with sangria here:
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name := "sangria"
organization := "org.sangria-graphql"
version := "1.4.2-SNAPSHOT"
version := "1.4.2"

description := "Scala GraphQL implementation"
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.6"
crossScalaVersions := Seq("2.11.12", "2.12.6")
crossScalaVersions := Seq("2.11.11", "2.12.6")

scalacOptions ++= Seq(
"-deprecation",
Expand Down Expand Up @@ -42,16 +42,16 @@ libraryDependencies ++= Seq(
// Testing
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"org.sangria-graphql" %% "sangria-marshalling-testkit" % "1.0.1" % Test,
"org.sangria-graphql" %% "sangria-spray-json" % "1.0.0" % Test,
"org.sangria-graphql" %% "sangria-spray-json" % "1.0.1" % Test,
"org.sangria-graphql" %% "sangria-argonaut" % "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,
"eu.timepit" %% "refined" % "0.8.7" % Test,
"eu.timepit" %% "refined" % "0.9.2" % Test,

// CATs
"net.jcazevedo" %% "moultingyaml" % "0.4.0" % Test,
"io.github.lukehutch" % "fast-classpath-scanner" % "2.18.2" % Test
"io.github.classgraph" % "classgraph" % "4.0.6" % Test
)

// Publishing
Expand Down

0 comments on commit b61471a

Please sign in to comment.