Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Prepare for release of 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Aug 10, 2024
1 parent 5dfa9b1 commit 061e142
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ compileJava {
}

// SkBee version
version = '3.5.9'
version = '3.6.0'
def latestJava = 21
def oldestJava = 17

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
@Examples({"add 100 diamonds to bundle contents of player's tool",
"remove all diamonds from bundle contents of player's tool",
"delete bundle contents of player's tool"})
@Since("INSERT VERSION")
@Since("3.6.0")
public class ExprBundleContents extends SimpleExpression<ItemType> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"- `reset` = Reset back to default state."})
@Examples({"set glint override of player's tool to true",
"set glint override of player's tool to false"})
@Since("INSERT VERSION")
@Since("3.6.0")
public class ExprEnchantmentGlintOverride extends SimplePropertyExpression<ItemType, Boolean> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"- `reset` = Resets back to default stack size."})
@Examples({"set max stack size component of player's tool to 1",
"reset max stack size component of player's tool"})
@Since("INSERT VERSION")
@Since("3.6.0")
public class ExprMaxStackSizeComponent extends SimplePropertyExpression<ItemType, Number> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"subtract 1 from repair cost of player's tool",
"reset repair cost of player's tool",
"if repair cost of player's tool > 0:"})
@Since("INSERT VERSION")
@Since("3.6.0")
public class ExprRepairCost extends SimplePropertyExpression<ItemType, Number> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
@Examples({"open real anvil inventory to player",
"open real anvil named \"Mr Anvil\" to player",
"open real anvil at location(1,1,1) named \"Senor Anvil\" to player"})
@Since("INSERT VERSION")
@Since("3.6.0")
public class EffOpenRealInventory extends Effect {

private static final boolean HAS_PAPER = Skript.methodExists(HumanEntity.class, "openAnvil", Location.class, boolean.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"refresh chunk at player # forces biomes to be re-sent to the player.",
"set {_key} to biome key of block at player",
"set {_keys::*} to biome keys of blocks in chunk at player"})
@Since("INSERT VERSION")
@Since("3.6.0")
public class ExprBiomeKeyLocation extends SimplePropertyExpression<Location, NamespacedKey> {

private static final UnsafeValues UNSAFE = Bukkit.getUnsafe();
Expand Down

0 comments on commit 061e142

Please sign in to comment.