Skip to content

Commit 1bc8604

Browse files
author
sbuzzard
committed
rev to 2.0.0 RC2 - RC1 DOA due to build.sbt issues
1 parent a434df5 commit 1bc8604

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

build.sbt

+13-5
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,10 @@ lazy val commonSettings = Seq(
1818
githubProject := "cedi-dtrace",
1919
parallelExecution in Global := !scala.util.Properties.propIsSet("disableParallel"),
2020
crossScalaVersions := Seq("2.12.8", "2.11.12"),
21-
scalacOptions ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
22-
scalacOptions in Test ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
2321
contributors ++= Seq(
2422
Contributor("sbuzzard", "Steve Buzzard"),
2523
Contributor("mpilquist", "Michael Pilquist")
2624
),
27-
scalacOptions ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
28-
scalacOptions in Test ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
2925
libraryDependencies ++= Seq(
3026
"org.typelevel" %% "cats-core" % catsCoreVersion,
3127
"org.typelevel" %% "cats-effect" % catsEffectVersion
@@ -39,7 +35,19 @@ lazy val commonSettings = Seq(
3935
"org.scalacheck" %% "scalacheck" % "1.13.5" % "test"
4036
)
4137
}),
42-
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.9")
38+
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.9"),
39+
pomExtra := (
40+
<url>http://github.com/ccadllc/{githubProject.value}</url>
41+
<developers>
42+
{for (Contributor(username, name) <- contributors.value) yield
43+
<developer>
44+
<id>{username}</id>
45+
<name>{name}</name>
46+
<url>https://github.com/{username}</url>
47+
</developer>
48+
}
49+
</developers>
50+
)
4351
)
4452

4553
lazy val root = project.in(file(".")).aggregate(

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "2.0.0-SNAPSHOT"
1+
version in ThisBuild := "2.0.0-RC2"

0 commit comments

Comments
 (0)