Skip to content

Commit

Permalink
Use Scala 2.12.8
Browse files Browse the repository at this point in the history
  • Loading branch information
aeons committed Feb 16, 2019
1 parent 884e993 commit 3fd9cc5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ env:
matrix:
include:
- jdk: oraclejdk8
scala: 2.12.7
scala: 2.12.8
- jdk: oraclejdk8
scala: 2.11.12
- jdk: openjdk11
scala: 2.12.7
scala: 2.12.8
- jdk: oraclejdk8
env:
- ROOT_DIR="scalafix"
scala: 2.12.7
scala: 2.12.8
allow_failures:
- jdk: openjdk11
scala: 2.12.7
scala: 2.12.8
notifications:
webhooks:
urls:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/tut/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and calling it with http4s' client.
Create a new directory, with the following build.sbt in the root:

```scala
scalaVersion := "2.12.7" // Also supports 2.11.x
scalaVersion := "2.12.8" // Also supports 2.11.x

val http4sVersion = "{{< version "http4s.doc" >}}"

Expand Down
2 changes: 1 addition & 1 deletion project/Http4sPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ object Http4sPlugin extends AutoPlugin {
) ++ signingSettings

override lazy val projectSettings: Seq[Setting[_]] = Seq(
scalaVersion := (sys.env.get("TRAVIS_SCALA_VERSION") orElse sys.env.get("SCALA_VERSION") getOrElse "2.12.7"),
scalaVersion := (sys.env.get("TRAVIS_SCALA_VERSION") orElse sys.env.get("SCALA_VERSION") getOrElse "2.12.8"),

// Rig will take care of this on production builds. We haven't fully
// implemented that machinery yet, so we're going to live without this
Expand Down

0 comments on commit 3fd9cc5

Please sign in to comment.