Skip to content

Commit

Permalink
Releasing 2.2.0
Browse files Browse the repository at this point in the history
- Initialization Optimization on Spigot
- bStats support implemented for Velocity
- bStats support implemented for BungeeCord
  • Loading branch information
retrooper committed Dec 13, 2023
1 parent 1e91905 commit 3c41847
Show file tree
Hide file tree
Showing 11 changed files with 1,529 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@

package com.github.retrooper.packetevents;

import org.jetbrains.annotations.ApiStatus;

public final class PacketEvents {
private static PacketEventsAPI<?> API;

//Put these variable names anywhere else, they are really only for the injectors
@ApiStatus.Internal
public static String IDENTIFIER, ENCODER_NAME, DECODER_NAME, CONNECTION_HANDLER_NAME, SERVER_CHANNEL_HANDLER_NAME,
TIMEOUT_HANDLER_NAME;

Expand Down
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, 1, 0);
private static final PEVersion VERSION = new PEVersion(2, 2, 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.1.0'//TODO UPDATE - ADD "-SNAPSHOT" if we are dealing with snapshot versions
version = '2.2.0'//TODO UPDATE - ADD "-SNAPSHOT" if we are dealing with snapshot versions
project.ext.nettyVersion = '4.1.72.Final'
project.ext.adventureVersion = '4.14.0'
project.ext.adventureDependencies=["net.kyori:adventure-api:${adventureVersion}",
Expand Down
Loading

0 comments on commit 3c41847

Please sign in to comment.