Skip to content

Commit

Permalink
Release of PacketEvents 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
retrooper committed May 8, 2024
1 parent 5513c0f commit a373931
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public abstract class PacketEventsAPI<T> {
private final Logger LOGGER = Logger.getLogger(PacketEventsAPI.class.getName());
private static final LogManager LOG_MANAGER = new LogManager();
//TODO UPDATE
private static final PEVersion VERSION = new PEVersion(2, 2, 1);
private static final PEVersion VERSION = new PEVersion(2, 3, 0);

public EventManager getEventManager() {
return EVENT_MANAGER;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ subprojects {
}
group = 'com.github.retrooper'
description = project.name
version = '2.2.1'//TODO UPDATE - ADD "-SNAPSHOT" if we are dealing with snapshot versions
version = '2.3.0'//TODO UPDATE - ADD "-SNAPSHOT" if we are dealing with snapshot versions
project.ext.nettyVersion = '4.1.72.Final'
project.ext.adventureVersion = '4.16.0'
project.ext.adventureDependencies = ["net.kyori:adventure-api:${adventureVersion}",
Expand Down
2 changes: 1 addition & 1 deletion bungeecord/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: packetevents
version: 2.2.1 #//TODO UPDATE
version: 2.3.0 #//TODO UPDATE
main: io.github.retrooper.packetevents.PacketEventsPlugin
author: retrooper
2 changes: 1 addition & 1 deletion spigot/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: packetevents
version: 2.2.1 #//TODO UPDATE
version: 2.3.0 #//TODO UPDATE
api-version: 1.13
main: io.github.retrooper.packetevents.PacketEventsPlugin
author: retrooper
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

@Plugin(id = "packetevents", name = "PacketEvents",
description = "Packet library.", authors = {"retrooper"},
version = "2.2.1") //TODO UPDATE
version = "2.3.0") //TODO UPDATE
public class PacketEventsPlugin {
private final ProxyServer server;
private final Logger logger;
Expand Down

0 comments on commit a373931

Please sign in to comment.