From a7a1077676502a0d6814c064bd95befb6da59f5c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 13 Nov 2024 23:00:49 +0000 Subject: [PATCH] CONTRIBUTING: changing an event from sync to async or vice versa is a BC break --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3490542c5..eb475e76c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -56,6 +56,7 @@ PocketMine-MP has three primary branches of development. | Deprecating API classes, methods or constants | ❌ | ✔️ | ✔️ | | Adding optional parameters to an API method | ❌ | ✔️ | ✔️ | | Changing API behaviour | ❌ | 🟡 Only if backwards-compatible | ✔️ | +| Changing an event from sync to async or vice versa | ❌ | ❌ | ✔️ | | Removal of API | ❌ | ❌ | ✔️ | | Backwards-incompatible API change (e.g. renaming a method) | ❌ | ❌ | ✔️ | | Backwards-incompatible internals change (e.g. changing things in `pocketmine\network\mcpe`) | ❌ | ✔️ | ✔️ |