From 48d25009af415d99f8a7155f117a3979e5aceba5 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Mon, 9 May 2022 17:28:51 +0800 Subject: Add missing versions to issue template --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github/ISSUE_TEMPLATE') diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 9d0eb2ed..0e275a63 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -60,6 +60,9 @@ body: description: What version of iced are you using? options: - master + - 0.4.2 + - 0.4.1 + - 0.4.0 - 0.3.0 validations: required: true -- cgit From af1ff677545c9354aa8ae09d40b99317a6dd9613 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Tue, 10 May 2022 06:27:45 +0800 Subject: Drop older versions from list --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to '.github/ISSUE_TEMPLATE') diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 0e275a63..8500f2aa 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -60,10 +60,7 @@ body: description: What version of iced are you using? options: - master - - 0.4.2 - - 0.4.1 - - 0.4.0 - - 0.3.0 + - "0.4" validations: required: true - type: dropdown -- cgit From 82e11e04f2cf067a293c80127aaf9b60177a1126 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Tue, 10 May 2022 06:31:07 +0800 Subject: Add note about using the latest patch --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/ISSUE_TEMPLATE') diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 8500f2aa..ad60918c 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -57,7 +57,7 @@ body: id: version attributes: label: Version - description: What version of iced are you using? + description: What version of iced are you using? Please ensure it's the latest patch. options: - master - "0.4" -- cgit From 42c61a5c449f7b761189e5c35c9dc8920f89e4a5 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 10 May 2022 01:18:06 +0200 Subject: Elaborate on supported versions in `BUG-REPORT.yml` --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to '.github/ISSUE_TEMPLATE') diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index ad60918c..0c06c405 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -57,10 +57,16 @@ body: id: version attributes: label: Version - description: What version of iced are you using? Please ensure it's the latest patch. + description: | + We only offer support for the `0.4` release on crates.io and the `master` + branch on this repository. Which version are you using? Please make sure + you are using the latest patch available (e.g. run `cargo update`). + + If you are using an older release, please upgrade to `0.4` before filing + an issue. options: - master - - "0.4" + - 0.4 validations: required: true - type: dropdown -- cgit