Skip to content

Commit

Permalink
Bump Scala to 2.12.8 (closes #149)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFradet committed Feb 28, 2019
1 parent 59a0656 commit ed64b71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,7 +1,7 @@
language: scala
scala:
- 2.11.12
- 2.12.7
- 2.12.8
jdk:
- oraclejdk8
env:
Expand All @@ -18,7 +18,7 @@ deploy:
provider: script
script: ./.travis/deploy.sh $TRAVIS_TAG
on:
condition: '"${TRAVIS_SCALA_VERSION}" == "2.11.12" && "${TRAVIS_JDK_VERSION}" == "oraclejdk8"'
condition: '"${TRAVIS_SCALA_VERSION}" == "2.12.8" && "${TRAVIS_JDK_VERSION}" == "oraclejdk8"'
tags: true
after_success:
- bash <(curl -s https://codecov.io/bash)
7 changes: 2 additions & 5 deletions project/BuildSettings.scala
Expand Up @@ -32,11 +32,8 @@ object BuildSettings {
// Basic settings for our app
lazy val buildSettings = Seq[Setting[_]](
organization := "com.snowplowanalytics",
scalaVersion := "2.12.7",
crossScalaVersions := Seq("2.11.12", "2.12.7"),
addCompilerPlugin(
"org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full
)
scalaVersion := "2.12.8",
crossScalaVersions := Seq("2.11.12", "2.12.8")
)

// Publish settings
Expand Down

0 comments on commit ed64b71

Please sign in to comment.