From 022e0fc224181cbca448303128b60b1c6b94feb2 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Sun, 17 Mar 2024 12:35:17 +0100 Subject: [PATCH] Drop support for 1.17.1 and prior (#4376) Signed-off-by: Alexander Brandes --- .github/ISSUE_TEMPLATE/bug_report.yml | 7 ------- build.gradle.kts | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7637cd73b..62071285d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -30,14 +30,7 @@ body: - '1.20.4' - '1.20' - '1.19.4' - - '1.19.3' - - '1.19.2' - - '1.19.1' - - '1.19' - '1.18.2' - - '1.18.1' - - '1.17.1' - - '1.16.5' validations: required: true diff --git a/build.gradle.kts b/build.gradle.kts index 8fced9b85..e5478b102 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -225,7 +225,7 @@ tasks.getByName("jar") { enabled = false } -val supportedVersions = listOf("1.16.5", "1.17.1", "1.18.2", "1.19.4", "1.20.1", "1.20.4") +val supportedVersions = listOf("1.18.2", "1.19.4", "1.20.1", "1.20.4") tasks { register("cacheLatestFaweArtifact") { val lastSuccessfulBuildUrl = uri("https://ci.athion.net/job/FastAsyncWorldEdit/lastSuccessfulBuild/api/json").toURL()