Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to scala-2.12.6, drop macro-compat #1816

Merged
merged 4 commits into from Apr 29, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -5,7 +5,7 @@ environment:
TEST_SUITE: test
matrix:
- SCALA_VERSION: 2.11.12
- SCALA_VERSION: 2.12.4
- SCALA_VERSION: 2.12.6

install:
- ps: |
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -12,11 +12,11 @@ env:
matrix:
include:
- jdk: oraclejdk8
scala: 2.12.4
scala: 2.12.6
- jdk: oraclejdk8
scala: 2.11.12
- jdk: oraclejdk9
scala: 2.12.4
scala: 2.12.6
notifications:
webhooks:
urls:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/tut/service.md
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.4" // Also supports 2.11.x
scalaVersion := "2.12.6" // Also supports 2.11.x

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

Expand Down
2 changes: 1 addition & 1 deletion project/Http4sPlugin.scala
Expand Up @@ -61,7 +61,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.4"),
scalaVersion := (sys.env.get("TRAVIS_SCALA_VERSION") orElse sys.env.get("SCALA_VERSION") getOrElse "2.12.6"),

// 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