Skip to content

Commit

Permalink
Release v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed May 12, 2018
1 parent 1a8c115 commit e0c1147
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: scala
scala:
- 2.12.4
- 2.12.6
- 2.11.11
jdk:
- oraclejdk8
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.1.6 (2018-05-12)

* Updated sangria to v1.4.1

## v0.1.5 (2018-02-20)

* Updated sangria to v1.4.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
SBT Configuration:

```scala
libraryDependencies += "org.sangria-graphql" %% "sangria" % "1.4.0"
libraryDependencies += "org.sangria-graphql" %% "sangria-slowlog" % "0.1.5"
libraryDependencies += "org.sangria-graphql" %% "sangria" % "1.4.1"
libraryDependencies += "org.sangria-graphql" %% "sangria-slowlog" % "0.1.6"
```

## Usage
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-slowlog"
organization := "org.sangria-graphql"
version := "0.1.6-SNAPSHOT"
version := "0.1.6"

description := "Sangria middleware to log slow GraphQL queries"
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.4"
crossScalaVersions := Seq("2.11.11", "2.12.4")
scalaVersion := "2.12.6"
crossScalaVersions := Seq("2.11.11", "2.12.6")

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

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

libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria" % "1.4.0",
"org.sangria-graphql" %% "sangria" % "1.4.1",
"io.dropwizard.metrics" % "metrics-core" % "4.0.2",
"org.slf4j" % "slf4j-api" % "1.7.25",

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.1
sbt.version=1.1.5

0 comments on commit e0c1147

Please sign in to comment.