Skip to content

Commit

Permalink
version -> 12.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Mar 5, 2024
1 parent 48dea1c commit ea87674
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Changes are in reverse chronological order; newest changes at the top.

## Minecraft 1.20.2

### [12.3.1]

* Fixed a couple of bugs with Template Frame (Extruder Mk2 fake blocks) NBT load/save

### [12.3.0]

* Initial port to Minecraft 1.20.4
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,13 @@ tasks.withType(ProcessResources).configureEach {
}
}

def snapExt = ext.releaseTag == "" ? "-SNAPSHOT" : ""
publishing {
publications {
register('mavenJava', MavenPublication) {
artifactId = archive_base_name
groupId = mod_group_id
version = "${mod_version}+mc${minecraft_version}"
version = "${mod_version}+mc${minecraft_version}${snapExt}"
from components.java
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ org.gradle.daemon=false
# Mod
mod_id=modularrouters
archive_base_name=modular-routers
mod_version=12.3.0
mod_version=12.3.1
mod_name="Modular Routers"
mod_group_id=me.desht.modularrouters
mod_license=MIT
Expand Down
7 changes: 4 additions & 3 deletions release_info.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"homepage" : "https://minecraft.curseforge.com/projects/modular-routers",
"promos" : {
"1.20.4-recommended" : "12.3.0",
"1.20.4-latest" : "12.3.0"
"1.20.4-recommended" : "12.3.1",
"1.20.4-latest" : "12.3.1"
},
"1.20.4" : {
"12.3.0": "https://github.com/desht/ModularRouters/blob/MC1.20.4-master/Changelog.md#1230"
"12.3.0": "https://github.com/desht/ModularRouters/blob/MC1.20.4-master/Changelog.md#1230",
"12.3.1": "https://github.com/desht/ModularRouters/blob/MC1.20.4-master/Changelog.md#1231"
}
}

0 comments on commit ea87674

Please sign in to comment.