Skip to content

Commit c493a3c

Browse files
committed
let's use "0." versioning until we have some confidence in this
I've already tagged 0.1, so 0.2 is next I also threw in using scalaOrganization.value instead of hardcoding "org.scala-lang" since that's the new hotness
1 parent cbdd2b5 commit c493a3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ crossScalaVersions in ThisBuild := Seq("2.13.0-pre-e2a2cba") // March 16, 2017
66

77
scalaVersion in ThisBuild := crossScalaVersions.value.head
88

9-
version in ThisBuild := "1.0.0-SNAPSHOT"
9+
version in ThisBuild := "0.2-SNAPSHOT"
1010

1111
scalacOptions in ThisBuild ++= Seq("-deprecation", "-feature")
1212

@@ -33,6 +33,6 @@ lazy val scalacheck = project.in(file("scalacheck")).settings(
3333
).dependsOn(core)
3434

3535
lazy val testmacros = project.in(file("testmacros")).settings(
36-
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value,
36+
libraryDependencies += scalaOrganization.value % "scala-compiler" % scalaVersion.value,
3737
publishArtifact := false
3838
)

0 commit comments

Comments
 (0)