Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
bensku committed Jun 3, 2019
1 parent 94753c4 commit a35311c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
groupid=ch.njol
name=skript
version=2.4-alpha1
version=2.4-alpha2
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/conditions/CondIsBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@Name("Is Block")
@Description("Checks whether an item is a block.")
@Examples({"player's held item is a block", "{list::*} are blocks"})
@Since("INSERT VERSION")
@Since("2.4")
public class CondIsBlock extends PropertyCondition<ItemStack> {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffScriptFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
@Examples({"reload script \"test\"",
"enable script file \"testing\"",
"unload script file \"script.sk\""})
@Since("INSERT VERSION")
@Since("2.4")
public class EffScriptFile extends Effect {
static {
Skript.registerEffect(EffScriptFile.class, "(1¦enable|1¦load|2¦reload|3¦disable|3¦unload) s(c|k)ript [file] %string%");
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/expressions/ExprDrops.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"In break events, drops can only be cleared, and is only available in 1.12+")
@Examples({"clear drops",
"remove 4 planks from the drops", "on break of diamond ore:", "\tclear drops"})
@Since("1.0, INSERT VERSION (block break event drops)")
@Since("1.0, 2.4 (block break event drops)")
@Events("break / mine, death")
public class ExprDrops extends SimpleExpression<ItemStack> {
static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
@Examples({"set all players tab list header to \"Welcome to the Server!\"",
"send \"%the player's tab list header%\" to player",
"reset all player's tab list header"})
@Since("INSERT VERSION")
@Since("2.4")
@RequiredPlugins("Spigot 1.13 or newer")
public class ExprPlayerlistHeaderFooter extends PropertyExpression<Player, String> {

Expand Down

0 comments on commit a35311c

Please sign in to comment.