We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a1baca commit 3368fb1Copy full SHA for 3368fb1
project/Build.scala
@@ -864,7 +864,7 @@ object Build {
864
settings(commonSettings).
865
settings(
866
version := {
867
- val base = "0.2.1"
+ val base = "0.2.2"
868
if (isRelease) base else base + "-SNAPSHOT"
869
},
870
sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala
@@ -179,6 +179,14 @@ object DottyPlugin extends AutoPlugin {
179
dottyBridge
180
else
181
scalaBridge
182
+ },
183
+
184
+ // Needed for RCs publishing
185
+ scalaBinaryVersion := {
186
+ if (isDotty.value)
187
+ scalaVersion.value.split("\\.").take(2).mkString(".")
188
+ else
189
+ scalaBinaryVersion.value
190
}
191
)
192
0 commit comments