Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pages/Developer-API.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -50,7 +50,7 @@ If you're using Maven, simply add this to the `dependencies` section of your POM
<dependency>
<groupId>net.luckperms</groupId>
<artifactId>api</artifactId>
<version>5.4</version>
<version>5.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -67,7 +67,7 @@ repositories {
}

dependencies {
compileOnly 'net.luckperms:api:5.4'
compileOnly 'net.luckperms:api:5.5'
}
```

Expand All @@ -78,7 +78,7 @@ repositories {
}

dependencies {
compileOnly("net.luckperms:api:5.4")
compileOnly("net.luckperms:api:5.5")
}
```

Expand Down