diff options
author | 2022-05-10 01:19:22 +0200 | |
---|---|---|
committer | 2022-05-10 01:19:22 +0200 | |
commit | d087de5dc0169694d709b299937339b2dfcdb528 (patch) | |
tree | 646cf3ff1c53691d998c3fd95feed266e5d742f1 /.github | |
parent | a5b2c07909df6ce7bc8955111ba1b59435140e99 (diff) | |
parent | 42c61a5c449f7b761189e5c35c9dc8920f89e4a5 (diff) | |
download | iced-d087de5dc0169694d709b299937339b2dfcdb528.tar.gz iced-d087de5dc0169694d709b299937339b2dfcdb528.tar.bz2 iced-d087de5dc0169694d709b299937339b2dfcdb528.zip |
Merge pull request #1340 from mtkennerly/bugfix/missing-versions-in-dropdown
Add missing versions to issue template
Diffstat (limited to '')
-rw-r--r-- | .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 9d0eb2ed..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? + 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.3.0 + - 0.4 validations: required: true - type: dropdown |