From d2cccf7d5faa4157869f2830cf61febc76c32834 Mon Sep 17 00:00:00 2001 From: Simonsator <00pflaume@gmail.com> Date: Fri, 13 Oct 2023 14:22:01 +0200 Subject: [PATCH] Updated version --- README.MD | 2 +- api/pom.xml | 2 +- bungeecord-mysql/pom.xml | 2 +- final-build/pom.xml | 2 +- pom.xml | 2 +- proxy-common/pom.xml | 2 +- spigot-plugin/pom.xml | 2 +- test/pom.xml | 4 ++-- velocity-mysql/pom.xml | 2 +- .../velocity/spigot/proxy/PartyAPISpigotBridgeLoader.java | 4 ++-- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.MD b/README.MD index 83d2986..ddb6c78 100644 --- a/README.MD +++ b/README.MD @@ -102,7 +102,7 @@ You can find the JavaDoc [here](https://simonsator.de/JavaDoc/PartyRedisBungeeAP de.simonsator spigot-party-api-for-party-and-friends - 1.0.6-RELEASE + 1.0.7-RELEASE provided diff --git a/api/pom.xml b/api/pom.xml index 8ddd5d6..6a7cd34 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -5,7 +5,7 @@ spigot-party-api-parent de.simonsator - 1.0.6-RELEASE + 1.0.7-RELEASE 4.0.0 spigot-party-api-for-party-and-friends diff --git a/bungeecord-mysql/pom.xml b/bungeecord-mysql/pom.xml index 41cbe90..976acc0 100644 --- a/bungeecord-mysql/pom.xml +++ b/bungeecord-mysql/pom.xml @@ -5,7 +5,7 @@ spigot-party-api-parent de.simonsator - 1.0.6-RELEASE + 1.0.7-RELEASE 4.0.0 diff --git a/final-build/pom.xml b/final-build/pom.xml index 45d6d88..e0f0b45 100644 --- a/final-build/pom.xml +++ b/final-build/pom.xml @@ -5,7 +5,7 @@ spigot-party-api-parent de.simonsator - 1.0.6-RELEASE + 1.0.7-RELEASE 4.0.0 spigot-party-api-final-build diff --git a/pom.xml b/pom.xml index 846b5de..bac8d09 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ de.simonsator spigot-party-api-parent pom - 1.0.6-RELEASE + 1.0.7-RELEASE 8 8 diff --git a/proxy-common/pom.xml b/proxy-common/pom.xml index 19f2caf..2244673 100644 --- a/proxy-common/pom.xml +++ b/proxy-common/pom.xml @@ -5,7 +5,7 @@ spigot-party-api-parent de.simonsator - 1.0.6-RELEASE + 1.0.7-RELEASE 4.0.0 spigot-party-api-proxy-common diff --git a/spigot-plugin/pom.xml b/spigot-plugin/pom.xml index 521d915..bacaf93 100644 --- a/spigot-plugin/pom.xml +++ b/spigot-plugin/pom.xml @@ -5,7 +5,7 @@ spigot-party-api-parent de.simonsator - 1.0.6-RELEASE + 1.0.7-RELEASE 4.0.0 spigot-party-api-spigot-plugin diff --git a/test/pom.xml b/test/pom.xml index 9b88350..b42d2f8 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -5,7 +5,7 @@ spigot-party-api-parent de.simonsator - 1.0.6-RELEASE + 1.0.7-RELEASE 4.0.0 spigot-party-api-test @@ -38,7 +38,7 @@ de.simonsator spigot-party-api-for-party-and-friends - 1.0.6-RELEASE + 1.0.7-RELEASE provided diff --git a/velocity-mysql/pom.xml b/velocity-mysql/pom.xml index 2089ab2..9deece9 100644 --- a/velocity-mysql/pom.xml +++ b/velocity-mysql/pom.xml @@ -5,7 +5,7 @@ spigot-party-api-parent de.simonsator - 1.0.6-RELEASE + 1.0.7-RELEASE 4.0.0 spigot-party-api-velocity-mysql diff --git a/velocity-mysql/src/main/java/de/simonsator/partyandfriends/velocity/spigot/proxy/PartyAPISpigotBridgeLoader.java b/velocity-mysql/src/main/java/de/simonsator/partyandfriends/velocity/spigot/proxy/PartyAPISpigotBridgeLoader.java index ddd99f9..580dcde 100644 --- a/velocity-mysql/src/main/java/de/simonsator/partyandfriends/velocity/spigot/proxy/PartyAPISpigotBridgeLoader.java +++ b/velocity-mysql/src/main/java/de/simonsator/partyandfriends/velocity/spigot/proxy/PartyAPISpigotBridgeLoader.java @@ -11,7 +11,7 @@ import java.nio.file.Path; -@Plugin(id = "party-proxy-bridge-for-paf", name = "Party Proxy Bridge for Party and Friends", version = "1.0.6-RELEASE", +@Plugin(id = "party-proxy-bridge-for-paf", name = "Party Proxy Bridge for Party and Friends", version = "1.0.7-RELEASE", description = "Loads Party Proxy Bridge for Party and Friends", authors = {"Simonsator"}, dependencies = {@Dependency(id = "partyandfriends")}) public class PartyAPISpigotBridgeLoader { private final Path folder; @@ -24,7 +24,7 @@ public PartyAPISpigotBridgeLoader(@DataDirectory final Path folder) { @Subscribe public void onProxyInitialization(ProxyInitializeEvent event) { PAFPlugin.loadExtension(new VelocityExtensionLoadingInfo(new PartyAPIForSpigotVelocityBridgePlugin(folder), - "party-proxy-bridge-for-paf", "Loads Party Proxy Bridge for Party and Friends", "1.0.6-RELEASE", "Simonsator")); + "party-proxy-bridge-for-paf", "Loads Party Proxy Bridge for Party and Friends", "1.0.7-RELEASE", "Simonsator")); } }