File tree 3 files changed +3
-3
lines changed
nir/src/main/scala/scala/scalanative/nir
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def generateScalaNativeCurrentYear():
71
71
# The short X.Y version.
72
72
version = u'0.5'
73
73
# The full version, including alpha/beta/rc tags.
74
- release = u'0.5.1 '
74
+ release = u'0.5.2-SNAPSHOT '
75
75
76
76
# The language for content autogenerated by Sphinx. Refer to documentation
77
77
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ object Versions {
25
25
final val revision : Int = 10 // a.k.a. MINOR version
26
26
27
27
/* Current public release version of Scala Native. */
28
- final val current : String = " 0.5.1 "
28
+ final val current : String = " 0.5.2-SNAPSHOT "
29
29
final val currentBinaryVersion : String = binaryVersion(current)
30
30
31
31
private object FullVersion {
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ object Settings {
205
205
.getOrElse(name.value, Nil ),
206
206
mimaPreviousArtifacts ++= {
207
207
// The previous releases of Scala Native with which this version is binary compatible.
208
- val binCompatVersions = Set ( " 0.5.0 " )
208
+ val binCompatVersions = 0 .to( 1 ).map(v => s " 0.5. $v " ).toSet
209
209
binCompatVersions
210
210
.map { version =>
211
211
ModuleID (organization.value, moduleName.value, version)
You can’t perform that action at this time.
0 commit comments