Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
For Release Candidate (#74)
Browse files Browse the repository at this point in the history
For Release Candidate
  • Loading branch information
ChristopherDavenport authored Aug 7, 2019
2 parents e931896 + 7266279 commit 6a7b235
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ language: scala

scala:
- 2.13.0
- 2.12.8
- 2.11.12
- 2.12.9

before_cache:
- find $HOME/.sbt -name "*.lock" -type f -delete
Expand Down Expand Up @@ -35,4 +34,4 @@ script:

after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_REPO_SLUG == "ChristopherDavenport/cats-par" && sbt ++$TRAVIS_SCALA_VERSION publish
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_REPO_SLUG == "ChristopherDavenport/cats-par" && test $TRAVIS_SCALA_VERSION == "2.12.8" && sbt docs/publishMicrosite
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_REPO_SLUG == "ChristopherDavenport/cats-par" && test $TRAVIS_SCALA_VERSION == "2.12.9" && sbt docs/publishMicrosite
13 changes: 7 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ lazy val root = project.in(file(""))
coreJVM,
coreJS
)


val catsV = "2.0.0-RC1"
val catsEffectV = "2.0.0-RC1" // Docs Only
val specs2V = "4.7.0"

lazy val core = crossProject(JSPlatform, JVMPlatform)
.crossType(CrossType.Full)
Expand All @@ -26,15 +29,13 @@ lazy val docs = project.in(file("docs"))
.dependsOn(coreJVM)
.settings(
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "2.0.0-M4"
"org.typelevel" %% "cats-effect" % catsEffectV
)
)

lazy val coreJVM = core.jvm
lazy val coreJS = core.js

val catsV = "2.0.0-M4"
val specs2V = "4.7.0"

lazy val contributors = Seq(
"ChristopherDavenport" -> "Christopher Davenport"
Expand All @@ -43,8 +44,8 @@ lazy val contributors = Seq(
lazy val commonSettings = Seq(
organization := "io.chrisdavenport",

scalaVersion := "2.12.8",
crossScalaVersions := Seq("2.13.0", scalaVersion.value, "2.11.12"),
scalaVersion := "2.13.0",
crossScalaVersions := Seq(scalaVersion.value, "2.12.9"),

addCompilerPlugin("org.typelevel" % "kind-projector" % "0.10.3" cross CrossVersion.binary),

Expand Down

0 comments on commit 6a7b235

Please sign in to comment.