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") } ```