From 0ad329687c223753db1172c4eb8357d1d82c09f1 Mon Sep 17 00:00:00 2001 From: Julian <53055251+NoJokeFNA@users.noreply.github.com> Date: Fri, 19 Dec 2025 11:02:56 +0100 Subject: [PATCH] change(version): bump api version from 5.4 to 5.5 --- pages/Developer-API.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/Developer-API.md b/pages/Developer-API.md index 1ffa31c..4c0afb6 100644 --- a/pages/Developer-API.md +++ b/pages/Developer-API.md @@ -6,7 +6,7 @@ LuckPerms has a complete developer API, which allows other plugins on the server The API uses [Semantic Versioning](https://semver.org/), meaning whenever a non-backwards compatible change is made, the major version will increment. You can rest assured knowing your integration will not break between versions, providing the major version remains the same. -The current API release is `5.4`. +The current API release is `5.5`. * The API package in LuckPerms is `net.luckperms.api`. * JavaDocs are available either in [a standard JavaDoc layout](https://javadoc.io/doc/net.luckperms/api/latest/), or within the API [source code](https://github.com/LuckPerms/LuckPerms/tree/master/api/src/main/java/net/luckperms/api). @@ -50,7 +50,7 @@ If you're using Maven, simply add this to the `dependencies` section of your POM net.luckperms api - 5.4 + 5.5 provided @@ -67,7 +67,7 @@ repositories { } dependencies { - compileOnly 'net.luckperms:api:5.4' + compileOnly 'net.luckperms:api:5.5' } ``` @@ -78,7 +78,7 @@ repositories { } dependencies { - compileOnly("net.luckperms:api:5.4") + compileOnly("net.luckperms:api:5.5") } ```