Skip to content

Commit

Permalink
bugfix + v1.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
phinner committed Feb 16, 2022
1 parent dfee544 commit 998fa1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
v1.3.1
v1.3.2

- Fix bug where only the `ModTarget.DESKTOP` dependencies are applied.
- Small changes
- BugFix: removed `annotations` artifact since it's no longer published in V7.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "fr.xpdustry"
version = "1.3.1" + if (indraGit.headTag() == null) "-SNAPSHOT" else ""
version = "1.3.2" + if (indraGit.headTag() == null) "-SNAPSHOT" else ""

tasks.javadocJar {
from(tasks.dokkaHtml)
Expand Down
1 change: 0 additions & 1 deletion src/main/kotlin/fr/xpdustry/toxopid/ToxopidPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ class ToxopidPlugin : Plugin<Project> {

p.mindustryDependency("com.github.Anuken.Arc:arc-core:$arcCompileVersion")
p.mindustryDependency("com.github.Anuken.Mindustry:core:${ext.mindustryCompileVersion.get()}")
p.mindustryDependency("com.github.Anuken.Mindustry:annotations:${ext.mindustryCompileVersion.get()}")

if (ext.modTarget.get() == ModTarget.HEADLESS) {
p.mindustryDependency("com.github.Anuken.Arc:backend-headless:$arcCompileVersion")
Expand Down

0 comments on commit 998fa1d

Please sign in to comment.