Skip to content

Commit ea87674

Browse files
committed
version -> 12.3.1
1 parent 48dea1c commit ea87674

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Changes are in reverse chronological order; newest changes at the top.
66

77
## Minecraft 1.20.2
88

9+
### [12.3.1]
10+
11+
* Fixed a couple of bugs with Template Frame (Extruder Mk2 fake blocks) NBT load/save
12+
913
### [12.3.0]
1014

1115
* Initial port to Minecraft 1.20.4

build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,13 @@ tasks.withType(ProcessResources).configureEach {
141141
}
142142
}
143143

144+
def snapExt = ext.releaseTag == "" ? "-SNAPSHOT" : ""
144145
publishing {
145146
publications {
146147
register('mavenJava', MavenPublication) {
147148
artifactId = archive_base_name
148149
groupId = mod_group_id
149-
version = "${mod_version}+mc${minecraft_version}"
150+
version = "${mod_version}+mc${minecraft_version}${snapExt}"
150151
from components.java
151152
}
152153
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ org.gradle.daemon=false
66
# Mod
77
mod_id=modularrouters
88
archive_base_name=modular-routers
9-
mod_version=12.3.0
9+
mod_version=12.3.1
1010
mod_name="Modular Routers"
1111
mod_group_id=me.desht.modularrouters
1212
mod_license=MIT

release_info.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"homepage" : "https://minecraft.curseforge.com/projects/modular-routers",
33
"promos" : {
4-
"1.20.4-recommended" : "12.3.0",
5-
"1.20.4-latest" : "12.3.0"
4+
"1.20.4-recommended" : "12.3.1",
5+
"1.20.4-latest" : "12.3.1"
66
},
77
"1.20.4" : {
8-
"12.3.0": "https://github.com/desht/ModularRouters/blob/MC1.20.4-master/Changelog.md#1230"
8+
"12.3.0": "https://github.com/desht/ModularRouters/blob/MC1.20.4-master/Changelog.md#1230",
9+
"12.3.1": "https://github.com/desht/ModularRouters/blob/MC1.20.4-master/Changelog.md#1231"
910
}
1011
}

0 commit comments

Comments
 (0)