From 1bc860421aab14c32decb8e76059729fd0290de9 Mon Sep 17 00:00:00 2001 From: sbuzzard Date: Sun, 10 Mar 2019 17:00:47 -0400 Subject: [PATCH] rev to 2.0.0 RC2 - RC1 DOA due to build.sbt issues --- build.sbt | 18 +++++++++++++----- version.sbt | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index b472270..bc56963 100644 --- a/build.sbt +++ b/build.sbt @@ -18,14 +18,10 @@ lazy val commonSettings = Seq( githubProject := "cedi-dtrace", parallelExecution in Global := !scala.util.Properties.propIsSet("disableParallel"), crossScalaVersions := Seq("2.12.8", "2.11.12"), - scalacOptions ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")), - scalacOptions in Test ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")), contributors ++= Seq( Contributor("sbuzzard", "Steve Buzzard"), Contributor("mpilquist", "Michael Pilquist") ), - scalacOptions ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")), - scalacOptions in Test ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")), libraryDependencies ++= Seq( "org.typelevel" %% "cats-core" % catsCoreVersion, "org.typelevel" %% "cats-effect" % catsEffectVersion @@ -39,7 +35,19 @@ lazy val commonSettings = Seq( "org.scalacheck" %% "scalacheck" % "1.13.5" % "test" ) }), - addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.9") + addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.9"), + pomExtra := ( + http://github.com/ccadllc/{githubProject.value} + + {for (Contributor(username, name) <- contributors.value) yield + + {username} + {name} + https://github.com/{username} + + } + + ) ) lazy val root = project.in(file(".")).aggregate( diff --git a/version.sbt b/version.sbt index c92517f..c99c1d4 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "2.0.0-SNAPSHOT" +version in ThisBuild := "2.0.0-RC2"