1.0.0
Compatibility
Required content
Changes
iChunUtil
1.0.0
-
First release since rewrite.
-
Reset version number. We're starting from scratch (again), but now with NeoForge and Fabric!
Non-iChunUtil dependent mods will now require iChunUtil for the variety of functions it provides, most notably Configs and Networking. iChunUtil will (possibly) gradually be rebuilt over time in the future for the rest of my projects.
Major version will stay at 1, Minor version will increase as code-breaking changes are made, Build version will increase as non-breaking features are added or bugs are fixed. EG: 1.X.Y, X being Minor version, Y being Build version.
This changelog only lists at most the 5 most recent changes since its implementation.
Ports to new MC versions will not be included in the changelog unless the version is also updated.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:W6ROj0Hl:2Y8tmgvW"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:W6ROj0Hl:2Y8tmgvW"
}

