Skip to content

Commit

Permalink
chore: Towards 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Apr 16, 2024
1 parent 57afc44 commit 60d6f2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def generateScalaNativeCurrentYear():
# The short X.Y version.
version = u'0.5'
# The full version, including alpha/beta/rc tags.
release = u'0.5.1'
release = u'0.5.2-SNAPSHOT'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nir/src/main/scala/scala/scalanative/nir/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object Versions {
final val revision: Int = 10 // a.k.a. MINOR version

/* Current public release version of Scala Native. */
final val current: String = "0.5.1"
final val current: String = "0.5.2-SNAPSHOT"
final val currentBinaryVersion: String = binaryVersion(current)

private object FullVersion {
Expand Down
2 changes: 1 addition & 1 deletion project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ object Settings {
.getOrElse(name.value, Nil),
mimaPreviousArtifacts ++= {
// The previous releases of Scala Native with which this version is binary compatible.
val binCompatVersions = Set("0.5.0")
val binCompatVersions = 0.to(1).map(v => s"0.5.$v").toSet
binCompatVersions
.map { version =>
ModuleID(organization.value, moduleName.value, version)
Expand Down

0 comments on commit 60d6f2c

Please sign in to comment.