From b4a97ab2a999311ee385675b934633898cb0a197 Mon Sep 17 00:00:00 2001 From: Olivia Date: Wed, 19 Mar 2025 02:43:07 -0500 Subject: [PATCH 1/3] chore: add issue types to new issues (#6094) Adds a new [issue type](https://docs.github.com/en/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization) to new issues. Basically built in labels. --- .github/ISSUE_TEMPLATE/report-a-bug.yml | 1 + .github/ISSUE_TEMPLATE/request-a-feature.yml | 1 + 2 files changed, 2 insertions(+) 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: From 2719a189af01c14af097ccba1082a89309c9e0ee Mon Sep 17 00:00:00 2001 From: Josh Roy <10731363+JRoy@users.noreply.github.com> Date: Thu, 13 Mar 2025 10:28:23 -0400 Subject: [PATCH 2/3] Release 2.21.0 --- README.md | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 61ac660ce81..0eb9ce59813 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ 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` | +| Latest release | `net.essentialsx` | `EssentialsX` | `2.21.0` | | Snapshots | `net.essentialsx` | `EssentialsX` | `2.21.0-SNAPSHOT` | | Older releases | `net.ess3` | `EssentialsX` | `2.18.2` | diff --git a/build.gradle b/build.gradle index 4a859e01522..01a8749670a 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { } group = "net.essentialsx" -version = "2.21.0-SNAPSHOT" +version = "2.21.0" project.ext { GIT_COMMIT = !indraGit.isPresent() ? "unknown" : indraGit.commit().abbreviate(7).name() From 46ba679c025b9fcc1f37d2ebd4285969c8cc64c9 Mon Sep 17 00:00:00 2001 From: Josh Roy <10731363+JRoy@users.noreply.github.com> Date: Thu, 13 Mar 2025 10:34:33 -0400 Subject: [PATCH 3/3] Prepare for 2.21.1 dev builds --- README.md | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0eb9ce59813..88da6116aff 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ 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.21.0` | -| Snapshots | `net.essentialsx` | `EssentialsX` | `2.21.0-SNAPSHOT` | +| 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 01a8749670a..40bd67decfc 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { } group = "net.essentialsx" -version = "2.21.0" +version = "2.21.1-SNAPSHOT" project.ext { GIT_COMMIT = !indraGit.isPresent() ? "unknown" : indraGit.commit().abbreviate(7).name()