Skip to content

Commit

Permalink
Update versioning to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesTKhan committed Oct 21, 2022
1 parent 3eeb10f commit 1b919c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion commons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: "java"
apply plugin: "maven-publish"

group = 'com.github.jamestkhan.mundus'
version = '0.4.0'
version = '0.4.1'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
2 changes: 1 addition & 1 deletion editor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ task run(dependsOn: classes, type: JavaExec) {

task distEditor(type: Jar) {
archivesBaseName = 'Mundus'
archiveVersion.set('0.4.0')
archiveVersion.set('0.4.1')

duplicatesStrategy(DuplicatesStrategy.EXCLUDE)

Expand Down
2 changes: 1 addition & 1 deletion editor/src/main/com/mbrlabs/mundus/editor/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import com.mbrlabs.mundus.editor.utils.StartOnFirstThreadHelper

const private val TAG = "Main"

const val VERSION = "v0.4.0"
const val VERSION = "v0.4.1"
const val TITLE = "Mundus $VERSION"

@Suppress("UNUSED_PARAMETER")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class VersionDialog : BaseDialog("Version Info") {
root.add(LinkLabel("Issues","https://github.com/JamesTKhan/Mundus/issues")).row()

label = VisLabel()
label.setText("v0.4.0 introduces a modified implementation of gdx-gltf's PBR shader for model rendering as well as changes to the " +
label.setText("v0.4.0 introduced a modified implementation of gdx-gltf's PBR shader for model rendering as well as changes to the " +
"lighting and fog code. You may need to adjust lighting and fog if you are using a project from " +
"a prior version.")
label.wrap = true
Expand Down
2 changes: 1 addition & 1 deletion gdx-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: "java"
apply plugin: "maven-publish"

group = 'com.github.jamestkhan.mundus'
version = '0.4.0'
version = '0.4.1'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit 1b919c1

Please sign in to comment.