Skip to content

Commit

Permalink
chore: release v1.10.0-beta.03
Browse files Browse the repository at this point in the history
  • Loading branch information
JunkFood02 committed Aug 10, 2023
1 parent 7e76d8d commit 1b67abd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ sealed class Version(
val versionBuild: Int = 0
) {
abstract fun toVersionName(): String
class Alpha(versionMajor: Int, versionMinor: Int, versionPatch: Int, versionBuild: Int) :
Version(versionMajor, versionMinor, versionPatch, versionBuild) {
override fun toVersionName(): String =
"${versionMajor}.${versionMinor}.${versionPatch}-alpha.$versionBuild"
}

class Beta(versionMajor: Int, versionMinor: Int, versionPatch: Int, versionBuild: Int) :
Version(versionMajor, versionMinor, versionPatch, versionBuild) {
override fun toVersionName(): String =
Expand Down Expand Up @@ -48,7 +54,7 @@ val currentVersion: Version = Version.Beta(
versionMajor = 1,
versionMinor = 10,
versionPatch = 0,
versionBuild = 3
versionBuild = 4
)

val keystorePropertiesFile = rootProject.file("keystore.properties")
Expand Down

1 comment on commit 1b67abd

@JunkFood02
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's v1.10.0-beta.4! just a typo

Please sign in to comment.