Skip to content

Commit 8a6148d

Browse files
committed
Version 0.6.5.
1 parent c2e5de7 commit 8a6148d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

ir/src/main/scala/org/scalajs/core/ir/ScalaJSVersions.scala

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ object ScalaJSVersions {
1010
*/
1111

1212
/** Scala.js version. */
13-
val current: String = "0.6.5-SNAPSHOT"
13+
val current: String = "0.6.5"
1414

1515
/** true iff the Scala.js version is a snapshot version. */
1616
val currentIsSnapshot: Boolean = current endsWith "-SNAPSHOT"
@@ -21,10 +21,11 @@ object ScalaJSVersions {
2121
* - a prior release version (i.e. "0.5.0", *not* "0.5.0-SNAPSHOT")
2222
* - `current`
2323
*/
24-
val binaryEmitted: String = current
24+
val binaryEmitted: String = "0.6.5"
2525

2626
/** Versions whose binary files we can support (used by deserializer) */
27-
val binarySupported: Set[String] = Set("0.6.0", "0.6.3", "0.6.4", binaryEmitted)
27+
val binarySupported: Set[String] =
28+
Set("0.6.0", "0.6.3", "0.6.4", "0.6.5", binaryEmitted)
2829

2930
// Just to be extra safe
3031
assert(binarySupported contains binaryEmitted)

0 commit comments

Comments
 (0)