From 85b5c7755053746176346664d2a8eda7a2c71c3d Mon Sep 17 00:00:00 2001 From: Luck Date: Sun, 23 Sep 2018 22:25:56 +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 25b2667..c58a666 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.2`. +The current API release is `4.3`. * 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.2 + 4.3 provided @@ -57,7 +57,7 @@ repositories { } dependencies { - compile ("me.lucko.luckperms:luckperms-api:4.2") + compile ("me.lucko.luckperms:luckperms-api:4.3") } ```