Skip to content

Commit 10f45e2

Browse files
committed
Update the version of the plugin
1 parent d00cc1e commit 10f45e2

10 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ You can find the JavaDoc [here](https://simonsator.de/JavaDoc/PartyRedisBungeeAP
102102
<dependency>
103103
<groupId>de.simonsator</groupId>
104104
<artifactId>spigot-party-api-for-party-and-friends</artifactId>
105-
<version>1.0.7-RELEASE</version>
105+
<version>1.0.8-RELEASE</version>
106106
<scope>provided</scope>
107107
</dependency>
108108
</dependencies>

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spigot-party-api-parent</artifactId>
77
<groupId>de.simonsator</groupId>
8-
<version>1.0.7-RELEASE</version>
8+
<version>1.0.8-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>spigot-party-api-for-party-and-friends</artifactId>

bungeecord-mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spigot-party-api-parent</artifactId>
77
<groupId>de.simonsator</groupId>
8-
<version>1.0.7-RELEASE</version>
8+
<version>1.0.8-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

final-build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spigot-party-api-parent</artifactId>
77
<groupId>de.simonsator</groupId>
8-
<version>1.0.7-RELEASE</version>
8+
<version>1.0.8-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>spigot-party-api-final-build</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>de.simonsator</groupId>
88
<artifactId>spigot-party-api-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0.7-RELEASE</version>
10+
<version>1.0.8-RELEASE</version>
1111
<properties>
1212
<maven.compiler.release>8</maven.compiler.release>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

proxy-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spigot-party-api-parent</artifactId>
77
<groupId>de.simonsator</groupId>
8-
<version>1.0.7-RELEASE</version>
8+
<version>1.0.8-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>spigot-party-api-proxy-common</artifactId>

spigot-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spigot-party-api-parent</artifactId>
77
<groupId>de.simonsator</groupId>
8-
<version>1.0.7-RELEASE</version>
8+
<version>1.0.8-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>spigot-party-api-spigot-plugin</artifactId>

test/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spigot-party-api-parent</artifactId>
77
<groupId>de.simonsator</groupId>
8-
<version>1.0.7-RELEASE</version>
8+
<version>1.0.8-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>spigot-party-api-test</artifactId>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>de.simonsator</groupId>
4040
<artifactId>spigot-party-api-for-party-and-friends</artifactId>
41-
<version>1.0.7-RELEASE</version>
41+
<version>1.0.8-RELEASE</version>
4242
<scope>provided</scope>
4343
</dependency>
4444
<dependency>

velocity-mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spigot-party-api-parent</artifactId>
77
<groupId>de.simonsator</groupId>
8-
<version>1.0.7-RELEASE</version>
8+
<version>1.0.8-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>spigot-party-api-velocity-mysql</artifactId>

velocity-mysql/src/main/java/de/simonsator/partyandfriends/velocity/spigot/proxy/PartyAPISpigotBridgeLoader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import java.nio.file.Path;
1313

14-
@Plugin(id = "party-proxy-bridge-for-paf", name = "Party Proxy Bridge for Party and Friends", version = "1.0.7-RELEASE",
14+
@Plugin(id = "party-proxy-bridge-for-paf", name = "Party Proxy Bridge for Party and Friends", version = "1.0.8-RELEASE",
1515
description = "Loads Party Proxy Bridge for Party and Friends", authors = {"Simonsator"}, dependencies = {@Dependency(id = "partyandfriends")})
1616
public class PartyAPISpigotBridgeLoader {
1717
private final Path folder;
@@ -24,7 +24,7 @@ public PartyAPISpigotBridgeLoader(@DataDirectory final Path folder) {
2424
@Subscribe
2525
public void onProxyInitialization(ProxyInitializeEvent event) {
2626
PAFPlugin.loadExtension(new VelocityExtensionLoadingInfo(new PartyAPIForSpigotVelocityBridgePlugin(folder),
27-
"party-proxy-bridge-for-paf", "Loads Party Proxy Bridge for Party and Friends", "1.0.7-RELEASE", "Simonsator"));
27+
"party-proxy-bridge-for-paf", "Loads Party Proxy Bridge for Party and Friends", "1.0.8-RELEASE", "Simonsator"));
2828
}
2929

3030
}

0 commit comments

Comments
 (0)