diff --git a/.github/ISSUE_TEMPLATE/report-a-bug.yml b/.github/ISSUE_TEMPLATE/report-a-bug.yml index 44f51eac3c8..7d12663909f 100644 --- a/.github/ISSUE_TEMPLATE/report-a-bug.yml +++ b/.github/ISSUE_TEMPLATE/report-a-bug.yml @@ -1,6 +1,7 @@ name: Report bug description: Report a bug in EssentialsX. labels: 'bug: unconfirmed' +type: Bug body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/request-a-feature.yml b/.github/ISSUE_TEMPLATE/request-a-feature.yml index ab8e8363b0a..e6bd83370da 100644 --- a/.github/ISSUE_TEMPLATE/request-a-feature.yml +++ b/.github/ISSUE_TEMPLATE/request-a-feature.yml @@ -1,6 +1,7 @@ name: Request a feature description: Suggest a feature you want to see in EssentialsX! labels: 'type: enhancement' +type: Feature body: - type: markdown attributes: diff --git a/README.md b/README.md index 61ac660ce81..88da6116aff 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,8 @@ To add EssentialsX to your build system, you should use the following artifacts: | Type | Group ID | Artifact ID | Version | |:---------------|:------------------|:--------------|:------------------| -| Latest release | `net.essentialsx` | `EssentialsX` | `2.20.1` | -| Snapshots | `net.essentialsx` | `EssentialsX` | `2.21.0-SNAPSHOT` | +| Latest release | `net.essentialsx` | `EssentialsX` | `2.21.0` | +| Snapshots | `net.essentialsx` | `EssentialsX` | `2.21.1-SNAPSHOT` | | Older releases | `net.ess3` | `EssentialsX` | `2.18.2` | Note: until version `2.18.2`, EssentialsX used the `net.ess3` group ID. diff --git a/build.gradle b/build.gradle index 4a859e01522..40bd67decfc 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { } group = "net.essentialsx" -version = "2.21.0-SNAPSHOT" +version = "2.21.1-SNAPSHOT" project.ext { GIT_COMMIT = !indraGit.isPresent() ? "unknown" : indraGit.commit().abbreviate(7).name()