From daf49c046c3d58b3eaab777dc5fcca6307c9a719 Mon Sep 17 00:00:00 2001 From: Luck Date: Sun, 7 Apr 2019 19:48:49 +0100 Subject: [PATCH] Updated Developer API (markdown) --- Developer-API.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Developer-API.md b/Developer-API.md index b26c40f..9fcbc05 100644 --- a/Developer-API.md +++ b/Developer-API.md @@ -4,7 +4,7 @@ LuckPerms has a complete developer API, which allows other plugins on the server ### Versioning 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 `4.3`. +The current API release is `4.4`. * The API package in LuckPerms is [`me.lucko.luckperms.api`](https://github.com/lucko/LuckPerms/tree/master/api/src/main/java/me/lucko/luckperms). * JavaDocs are available either in [a standard JavaDoc layout](https://javadoc.io/doc/me.lucko.luckperms/luckperms-api/), or within the API [source code](https://github.com/lucko/LuckPerms/tree/master/api/src/main/java/me/lucko/luckperms). @@ -43,7 +43,7 @@ If you're using Maven, simply add this to the `dependencies` section of your POM me.lucko.luckperms luckperms-api - 4.3 + 4.4 provided @@ -57,7 +57,7 @@ repositories { } dependencies { - compile 'me.lucko.luckperms:luckperms-api:4.3' + compile 'me.lucko.luckperms:luckperms-api:4.4' } ```