Skip to content

Commit

Permalink
Prepare for release of 2.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Apr 14, 2023
1 parent b9f8401 commit 968f5d8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.shanebeestudios</groupId>
<artifactId>SkBee</artifactId>
<version>2.8.3</version>
<version>2.8.4</version>

<properties>
<maven.compiler.source>16</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Name("Fish Hook - Current")
@Description("Get the current fish hook attached to a player's fishing rod.")
@Examples("delete current fish hook of player")
@Since("INSERT VERSION")
@Since("2.8.4")
public class ExprFishHookOfPlayer extends SimplePropertyExpression<Player, Entity> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ public Player get(BlockDamageAbortEvent event) {
.examples("on entity air change:",
"\tif event-entity is a player:",
"\t\tcancel event")
.since("INSERT VERSION");
.since("2.8.4");

EventValues.registerEventValue(EntityAirChangeEvent.class, Number.class, new Getter<>() {
@Override
Expand Down Expand Up @@ -360,7 +360,7 @@ public Timespan get(EntityAirChangeEvent event) {
.examples("on spawner spawn:",
"\tif event-entity is a skeleton:",
"\t\tcancel event")
.since("INSERT VERSION");
.since("2.8.4");

EventValues.registerEventValue(SpawnerSpawnEvent.class, Block.class, new Getter<>() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@Examples({"on respawn:",
"\tif respawn reason = death respawn:",
"\t\tgive player 10 diamonds"})
@Since("INSERT VERSION")
@Since("2.8.4")
public class ExprRespawnReason extends SimpleExpression<RespawnReason> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public boolean canParse(@NotNull ParseContext context) {
"\tif respawn reason = death respawn:",
"\t\tgive player 10 diamonds")
.parser(RESPAWN_REASON_ENUM.getParser())
.since("INSERT VERSION"));
.since("2.8.4"));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Name("Team - Display Name")
@Description("Represents the display name of a team.")
@Examples("set team display name of {_team} to \"The Warriors\"")
@Since("INSERT VERSION")
@Since("2.8.4")
@SuppressWarnings("deprecation")
public class ExprTeamName extends SimplePropertyExpression<Team, String> {

Expand Down

0 comments on commit 968f5d8

Please sign in to comment.