Skip to content

Commit

Permalink
Update versions to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesTKhan committed Oct 12, 2022
1 parent 7be37fd commit bfdcccf
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.3.1'
version = '0.4.0'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
2 changes: 1 addition & 1 deletion editor/CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[0.4.0] ~ 07/10/2022
[0.4.0] ~ 10/12/2022
- [BREAKING CHANGE] The ModelShader was replaced with custom PBR shader.
- [BREAKING CHANGE] Models from older versions may be invisible as first and will need their opacity updated on materials.
- [BREAKING CHANGE] Fog now has new parameters and more closely aligns with libGDX and PBR shaders. You may need to adjust fog.
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.3.1')
archiveVersion.set('0.4.0')

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.3.1"
const val VERSION = "v0.4.0"
const val TITLE = "Mundus $VERSION"

@Suppress("UNUSED_PARAMETER")
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.3.1'
version = '0.4.0'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit bfdcccf

Please sign in to comment.