Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Mar 1, 2017
1 parent 0f0e501 commit bbcafaf
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: scala
scala:
- 2.12.1
- 2.11.8
jdk:
- oraclejdk8
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.0.1 (2017-03-01)

* Updated play-json to v2.6.0-M3
* Cross-compile for scala 2.11 and 2.12

## v1.0.0 (2017-01-16)

* 1.0 Release
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
SBT Configuration:

```scala
libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "1.0.0"
libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "1.0.1"
```

## Compatibility matrix
Expand All @@ -20,6 +20,7 @@ libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "1.0.0"
|0.3.2 | 2.5.3 | 0.2.1 |
|0.3.3 | 2.5.9 | 0.2.1 |
|1.0.0 | 2.5.10 | 1.0.0 |
|1.0.1 | 2.6.0-M3 | 1.0.0 |


## License
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name := "sangria-play-json"
organization := "org.sangria-graphql"
version := "1.0.1-SNAPSHOT"
version := "1.0.1"

description := "Sangria play-json marshalling"
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.11.8"
crossScalaVersions := Seq("2.11.8")
scalaVersion := "2.12.1"
crossScalaVersions := Seq("2.11.8", "2.12.1")

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

libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria-marshalling-api" % "1.0.0",
"com.typesafe.play" %% "play-json" % "2.5.10",
"com.typesafe.play" %% "play-json" % "2.6.0-M3",

"org.sangria-graphql" %% "sangria-marshalling-testkit" % "1.0.0" % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
Expand Down

0 comments on commit bbcafaf

Please sign in to comment.