Skip to content

Commit

Permalink
fix conflicting with every minecraft version
Browse files Browse the repository at this point in the history
  • Loading branch information
btwonion committed May 11, 2024
1 parent 7ad99ac commit 85bd195
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ plugins {
signing
}

val featureVersion = "1.1.3"
val featureVersion = "1.1.4"
val mcVersion = property("mcVersion")!!.toString()
val currentVersion = stonecutter.current.version
val mcVersionRange = property("mcVersionRange")!!.toString()
version = "$featureVersion-$mcVersion"

Expand Down Expand Up @@ -75,7 +74,7 @@ tasks {
"id" to modId,
"name" to modName,
"description" to modDescription,
"version" to currentVersion,
"version" to project.version,
"github" to githubRepo,
"mc" to mcVersionRange
)
Expand Down
3 changes: 1 addition & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
- support 1.20.1, 1.20.3, 1.20.4, 1.20.5 and 1.20.6
- also serialize packets correctly on <1.20.5
- fix conflicting with every minecraft version
2 changes: 1 addition & 1 deletion versions/1.20.1/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mcVersion=1.20.1
mcVersionRange=>=1.20<=1.20.3
mcVersionRange=>=1.20 <=1.20.3
supportedMcVersions=1.20,1.20.1

deps.parchment=1.20.1:2023.09.03
Expand Down
2 changes: 1 addition & 1 deletion versions/1.20.4/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mcVersion=1.20.4
mcVersionRange=>=1.20.3<=1.20.4
mcVersionRange=>=1.20.3 <=1.20.4
supportedMcVersions=1.20.4

deps.parchment=1.20.4:2024.04.14
Expand Down
2 changes: 1 addition & 1 deletion versions/1.20.6/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mcVersion=1.20.6
mcVersionRange=>=1.20.5<=1.20.6
mcVersionRange=>=1.20.5 <=1.20.6
supportedMcVersions=1.20.5,1.20.6

deps.parchment=1.20.6:2024.05.01
Expand Down

0 comments on commit 85bd195

Please sign in to comment.