Skip to content

Commit

Permalink
Prepare for release of 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Jun 2, 2023
1 parent 2438e03 commit 44f1de7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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.10.0</version>
<version>2.11.0</version>

<properties>
<maven.compiler.source>16</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"async load chunk at 100,100 in world \"world\"",
"async load chunk at 1,1 in world of player with ticket",
"unload chunk at 1,1 in world \"world\""})
@Since("1.17.0, INSERT VERSION (async)")
@Since("1.17.0, 2.11.0 (async)")
public class EffLoadChunk extends Effect {

private static final SkBee PLUGIN = SkBee.getPlugin();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class EffTeamRegister extends Effect {

static {
// TODO DEPRECATED in INSERT VERSION
// TODO DEPRECATED in 2.11.0
Skript.registerEffect(EffTeamRegister.class, "(|1¦un)register [new] team %string%");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected Object[] get(Event event) {
public Class<?>[] acceptChange(ChangeMode mode) {
switch (mode) {
case ADD, REMOVE -> {
// TODO Deprecated INSERT VERSION
// TODO Deprecated 2.11.0
Skript.warning("You can now add/remove entities/strings to/from teams directly without this expression. " +
"ex: 'add player to team named \"a-team\"'");
return CollectionUtils.array(Player[].class, Entity[].class, String[].class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Types {
"add all players to team named \"a-team\"",
"remove all entities from team named \"the-mobs\"",
"delete team named \"z-team\"")
.since("1.16.0, INSERT VERSION (add/remove/delete)")
.since("1.16.0, 2.11.0 (add/remove/delete)")
.parser(new Parser<>() {
@SuppressWarnings("NullableProblems")
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"set {_line1} to sign line 1 of target block",
"set {_line1} to front sign line 1 of target block",
"set back sign line 1 of {_sign} to mini message from \"<rainbow>LINE ONE\""})
@Since("2.4.0, INSERT VERSION (front|back)")
@Since("2.4.0, 2.11.0 (front|back)")
public class ExprSignLines extends PropertyExpression<Block, BeeComponent> {

private static final boolean HAS_SIDES = Skript.isRunningMinecraft(1,20);
Expand Down

0 comments on commit 44f1de7

Please sign in to comment.