Skip to content

Commit

Permalink
Release v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Feb 20, 2018
1 parent 3448460 commit e7c054d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.1.5 (2018-02-20)

* Updated sangria to v1.4.0

## v0.1.4 (2017-12-03)

* Added support for [apollo-tracing](https://github.com/apollographql/apollo-tracing) extension.
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.3.3"
libraryDependencies += "org.sangria-graphql" %% "sangria-slowlog" % "0.1.4"
libraryDependencies += "org.sangria-graphql" %% "sangria" % "1.4.0"
libraryDependencies += "org.sangria-graphql" %% "sangria-slowlog" % "0.1.5"
```

## Usage
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "sangria-slowlog"
organization := "org.sangria-graphql"
version := "0.1.5-SNAPSHOT"
version := "0.1.5"

description := "Sangria middleware to log slow GraphQL queries"
homepage := Some(url("http://sangria-graphql.org"))
Expand All @@ -19,11 +19,11 @@ scalacOptions ++= {
}

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

"org.scalatest" %% "scalatest" % "3.0.4" % Test,
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
"org.sangria-graphql" %% "sangria-json4s-native" % "1.0.0" % Test,
"org.slf4j" % "slf4j-simple" % "1.7.25" % Test
)
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.0.3
sbt.version=1.1.1

0 comments on commit e7c054d

Please sign in to comment.