diff --git a/README.md b/README.md index d7485cd17..433ff9a5a 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,8 @@ dependencies { modImplementation "dev.engine-room.flywheel:flywheel-fabric-${minecraft_version}:${flywheel_version}" } ``` -`${flywheel_version}` gets replaced by the version of Flywheel you want to use, eg. `1.0.0-beta` + +`${flywheel_version}` gets replaced by the version of Flywheel you want to use, eg. `1.0.0` `${minecraft_version}` gets replaced by the version of Minecraft you're on, eg. `1.21.1` diff --git a/common/build.gradle.kts b/common/build.gradle.kts index f283b9c2f..b818b5551 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -87,6 +87,7 @@ jarSets { addToAssemble() publishWithRemappedSources { artifactId = "vanillin-common-intermediary-${property("artifact_minecraft_version")}" + version = property("vanillin_version") as String groupId = property("vanillin_group") as String } @@ -107,6 +108,7 @@ jarSets { publishWithRawSources { artifactId = "vanillin-common-mojmap-${property("artifact_minecraft_version")}" + version = property("vanillin_version") as String groupId = property("vanillin_group") as String } } diff --git a/gradle.properties b/gradle.properties index 75cfc8c48..cecc20f53 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ mod_homepage = https://github.com/Engine-Room/Flywheel # Flywheel metadata flywheel_id=flywheel flywheel_name=Flywheel -flywheel_version=1.0.0-beta +flywheel_version=1.0.0 flywheel_description=An overhauled entity and block entity rendering API. # Vanillin metadata vanillin_id=vanillin @@ -16,8 +16,8 @@ vanillin_name=Vanillin vanillin_version=1.0.0-beta vanillin_description=Instanced rendering for entities and block entities via Flywheel. # Vanillin dependencies -flywheel_maven_version_range=[1.0.0-beta,2.0) -flywheel_semver_version_range=>=1.0.0-beta <2.0.0 +flywheel_maven_version_range=[1.0.0,2.0) +flywheel_semver_version_range=>=1.0.0 <2.0.0 # Mod dependency declarations minecraft_semver_version_range = >=1.21.1 <1.21.2