Skip to content

Commit

Permalink
v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Polymeta committed Oct 14, 2023
1 parent 985ccb4 commit dc792fa
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ dependencies {
implementation("net.kyori:adventure-text-serializer-gson:${property("minimessage_version")}")
// Remove the next line if you don't want to depend on the API
modApi("dev.architectury:architectury:${property("architectury_version")}") { isTransitive = false }
modImplementation("com.cobblemon:mod:1.3.1+1.19.2-SNAPSHOT") { isTransitive = false }
modImplementation("com.cobblemon:mod:1.4.0+1.20.1-SNAPSHOT") { isTransitive = false }
}
3 changes: 1 addition & 2 deletions fabric/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id("dev.architectury.loom")
id("architectury-plugin")
Expand Down Expand Up @@ -37,7 +36,7 @@ dependencies {
shadowCommon("net.kyori:adventure-text-minimessage:${property("minimessage_version")}")
shadowCommon("net.kyori:adventure-text-serializer-gson:${property("minimessage_version")}")

modImplementation("com.cobblemon:fabric:1.3.1+1.19.2-SNAPSHOT") { isTransitive = false }
modImplementation("com.cobblemon:fabric:1.4.0+1.20.1-SNAPSHOT") { isTransitive = false }
shadowCommon(project(":common", configuration = "transformProductionFabric"))
}

Expand Down
6 changes: 3 additions & 3 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
},
"depends": {
"fabric": "*",
"minecraft": ">=1.19.2",
"cobblemon": ">=1.3.1",
"architectury": ">=6.5.69"
"minecraft": ">=1.20.1",
"cobblemon": ">=1.4.0",
"architectury": ">=9.1.12"
}
}
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
// Remove the next line if you don't want to depend on the API
modApi "dev.architectury:architectury-forge:${rootProject.architectury_version}"

modImplementation("com.cobblemon:forge:1.3.0+1.19.2-SNAPSHOT")
modImplementation("com.cobblemon:forge:1.4.0+1.20.1-SNAPSHOT")

forgeRuntimeLibrary("net.kyori:adventure-text-minimessage:${property("minimessage_version")}")
forgeRuntimeLibrary("net.kyori:adventure-text-serializer-gson:${property("minimessage_version")}")
Expand Down
8 changes: 4 additions & 4 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@ Gift your pokemon to players!
[[dependencies.pokegift]]
modId = "forge"
mandatory = true
versionRange = "[43,)"
versionRange = "[47,)"
ordering = "NONE"
side = "BOTH"

[[dependencies.pokegift]]
modId = "minecraft"
mandatory = true
versionRange = "[1.19.2,)"
versionRange = "[1.20.1,)"
ordering = "NONE"
side = "BOTH"

[[dependencies.pokegift]]
modId = "architectury"
mandatory = true
versionRange = "[6.5.69,)"
versionRange = "[9.1.12,)"
ordering = "AFTER"
side = "BOTH"

[[dependencies.pokegift]]
modId = "cobblemon"
mandatory = true
versionRange = "[1.3.1,)"
versionRange = "[1.4.0,)"
ordering = "AFTER"
side = "BOTH"
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
org.gradle.jvmargs=-Xmx4096M

minecraft_version=1.19.2
minecraft_version=1.20.1

archives_base_name=pokegift
mod_version=1.1.0
mod_version=1.2.0
maven_group=io.github.polymeta

architectury_version=6.5.69
architectury_version=9.1.12

fabric_loader_version=0.14.14
fabric_api_version=0.75.1+1.19.2
fabric_loader_version=0.14.23
fabric_api_version=0.90.0+1.20.1

forge_version=1.19.2-43.2.0
forge_version=1.20.1-47.2.0

minimessage_version=4.12.0

Expand Down

0 comments on commit dc792fa

Please sign in to comment.