From 91598e140217c78f7259bb8b9d38362bc7f02bc2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jun 2026 09:15:34 +0000 Subject: [PATCH 1/2] chore(main): release 5.0.0 --- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2f448f..09d2df7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [5.0.0](https://github.com/execaman/discolink/compare/v4.7.0...v5.0.0) (2026-06-06) + + +### ⚠ BREAKING CHANGES + +* **Plugins:** enforce structure via interface instead of class ([#68](https://github.com/execaman/discolink/issues/68)) + +### Features + +* **Functions:** add isPlugin() for plugin validation ([e2e2718](https://github.com/execaman/discolink/commit/e2e271871b682b97879153a06bc3a5f71d01651b)) +* **Plugins:** enforce structure via interface instead of class ([#68](https://github.com/execaman/discolink/issues/68)) ([e2e2718](https://github.com/execaman/discolink/commit/e2e271871b682b97879153a06bc3a5f71d01651b)) + ## [4.7.0](https://github.com/execaman/discolink/compare/v4.6.2...v4.7.0) (2026-05-18) diff --git a/package-lock.json b/package-lock.json index eda0a1e..2431bda 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "discolink", - "version": "4.7.0", + "version": "5.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "discolink", - "version": "4.7.0", + "version": "5.0.0", "license": "Apache-2.0", "dependencies": { "ws": "^8.20.0" diff --git a/package.json b/package.json index 4756c8c..053820e 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "$schema": "https://json.schemastore.org/package.json", "name": "discolink", "type": "module", - "version": "4.7.0", + "version": "5.0.0", "description": "A Lavalink client for Discord bots in TypeScript", "exports": { "import": { From d5cef3f7cff969e76a5b05d68ff544f6997a3d36 Mon Sep 17 00:00:00 2001 From: Aman <151807496+execaman@users.noreply.github.com> Date: Sat, 6 Jun 2026 15:03:17 +0530 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09d2df7..f6aa045 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### ⚠ BREAKING CHANGES +* **Plugins:** all built-in plugins have been removed * **Plugins:** enforce structure via interface instead of class ([#68](https://github.com/execaman/discolink/issues/68)) ### Features