Skip to content

Commit 6df69c8

Browse files
committed
Bump version and change to beta
1 parent 47f62b7 commit 6df69c8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ tasks.register('makeChangelog', GitChangelogTask) {
195195
publishMods {
196196
displayName = "ExtraStorage-$minecraft_version-$mod_version"
197197
version = mod_version
198-
type = STABLE
198+
type = BETA
199199

200200
def changelogFile = file('CHANGELOG.md')
201201
changelog = changelogFile.exists() ? changelogFile.text : 'CHANGELOG.md not found'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parchment_minecraft_version=1.21.1
1818
parchment_mappings_version=2024.11.17
1919

2020
## Mod Properties
21-
mod_version=4.1.0
21+
mod_version=5.0.0
2222
edivadlib_id=5491721
2323
edivadlib_version_range=[3.0.0,)
2424
refinedstorage_version_range=[2.0.0-beta.1,)

src/main/java/edivad/extrastorage/ExtraStorage.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ public void handleCommonSetup(FMLCommonSetupEvent event) {
131131
InterModComms.sendTo("inventorysorter", "containerblacklist",
132132
ESContainer.ADVANCED_IMPORTER::getId);
133133
}
134-
this.registerUpgradeMappings();
134+
//https://github.com/refinedmods/refinedstorage2/issues/906
135+
//this.registerUpgradeMappings();
135136
}
136137

137138
private void handleRegisterMenuScreens(RegisterMenuScreensEvent event) {

0 commit comments

Comments
 (0)