Skip to content

Commit

Permalink
remove release type from version
Browse files Browse the repository at this point in the history
  • Loading branch information
DonovanDMC committed Feb 25, 2022
1 parent 00831cc commit 9abc965
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'signing'

group = 'furry.cool.mc.forge'
version = getProperty("mcVersion") + "-" + getProperty("releaseType") + "." + getProperty("localVersion")
version = getProperty("mcVersion") + "-" + getProperty("localVersion")

java {
archivesBaseName = 'ProjectExpansion'
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

mcVersion = 1.16.5
releaseType = release
localVersion = 1.0.6
mappingsVersion = 20210309
forgeVersion = 36.2.23
Expand Down
6 changes: 3 additions & 3 deletions updates.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"1.0.3": "Sort Creative Items & Dynamically Generate Internal Data",
"1.0.4": "Fix EMCDisplay crash with null provider, add wip note on upgrade items.",
"1.0.5": "Fixed EMCDisplay tick rate & added Matter Upgrader",
"1.16.5-release.1.0.6": "No changes, we're doing some new versioning."
"1.16.5-1.0.6": "No changes, we're doing some new versioning."
},
"promos": {
"1.16.5-latest": "1.16.5-release.1.0.6",
"1.16.5-recommended": "1.16.5-release.1.0.6"
"1.16.5-latest": "1.16.5-1.0.6",
"1.16.5-recommended": "1.16.5-1.0.6"
}
}

0 comments on commit 9abc965

Please sign in to comment.