Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs/developers/minestom.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ Next, add the `apollo-minestom` dependency to your project.
<Tab>
```kotlin filename="build.gradle.kts"
dependencies {
implementation("com.lunarclient:apollo-minestom:1.2.0")
implementation("com.lunarclient:apollo-minestom:1.2.1")
}
```
</Tab>
<Tab>
```groovy filename="build.gradle"
dependencies {
implementation 'com.lunarclient:apollo-minestom:1.2.0'
implementation 'com.lunarclient:apollo-minestom:1.2.1'
}
```
</Tab>
Expand All @@ -69,7 +69,7 @@ Next, add the `apollo-minestom` dependency to your project.
<dependency>
<groupId>com.lunarclient</groupId>
<artifactId>apollo-minestom</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion example/bukkit/api/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Apollo-API-Example
main: com.lunarclient.apollo.example.api.ApolloApiExamplePlatform
version: 1.2.0
version: 1.2.1
author: Moonsworth
softdepend: [ Apollo-Bukkit, Apollo-Folia ]
api-version: 1.13
Expand Down
2 changes: 1 addition & 1 deletion example/bukkit/json/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Apollo-Json-Example
main: com.lunarclient.apollo.example.json.ApolloJsonExamplePlatform
version: 1.2.0
version: 1.2.1
author: Moonsworth
softdepend: [ Apollo-Bukkit ]
api-version: 1.13
Expand Down
2 changes: 1 addition & 1 deletion example/bukkit/proto/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Apollo-Proto-Example
main: com.lunarclient.apollo.example.proto.ApolloProtoExamplePlatform
version: 1.2.0
version: 1.2.1
author: Moonsworth
softdepend: [ Apollo-Bukkit ]
api-version: 1.13
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.lunarclient
version=1.2.1-SNAPSHOT
version=1.2.1
description=The API for interacting with Lunar Client players.

org.gradle.parallel=true
2 changes: 1 addition & 1 deletion platform/bukkit/src/platform-loader/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Apollo-Bukkit
main: com.lunarclient.apollo.loader.BukkitPlatformLoader
version: 1.2.0
version: 1.2.1
author: Moonsworth
api-version: 1.13
soft-depend: [LunarClient-API]
Expand Down
2 changes: 1 addition & 1 deletion platform/bungee/src/platform-loader/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Apollo-Bungee
main: com.lunarclient.apollo.loader.BungeePlatformLoader
version: 1.2.0
version: 1.2.1
author: Moonsworth
2 changes: 1 addition & 1 deletion platform/folia/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Apollo-Folia
main: com.lunarclient.apollo.ApolloFoliaPlatform
version: 1.2.0
version: 1.2.1
author: Moonsworth
api-version: 1.13
folia-supported: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public Options getOptions() {

@Override
public String getApolloVersion() {
return "1.2.0";
return "1.2.1";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
@Plugin(
id = "apollo",
name = "Apollo-Velocity",
version = "1.2.0",
version = "1.2.1",
url = "https://moonsworth.com",
description = "Implementation of Apollo for Velocity",
authors = {"Moonsworth"}
Expand Down