Skip to content

Commit

Permalink
Prepare for release of 2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Jul 14, 2023
1 parent 55610f8 commit 48875e9
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 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.14.1</version>
<version>2.15.0</version>

<properties>
<maven.compiler.source>16</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"set {_nonTemporaryBounds::*} to nontemporary bounds at {_loc}",
"loop all bounds at {locations::*}:",
"\tbroadcast loop-bound"})
@Since("1.0.0, INSERT VERSION (temporary/non-temporary)")
@Since("1.0.0, 2.15.0 (temporary/non-temporary)")
public class ExprBoundsAtLocation extends SimpleExpression<Object> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"set {_nonTemporaryBounds::*} to nontemporary bounds in world(\"world_nether\")",
"loop all bounds in {worlds::*}:",
"\tbroadcast loop-bound"})
@Since("INSERT VERSION")
@Since("2.15.0")
public class ExprBoundsInWorld extends SimpleExpression<Object> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@Examples({"create a bound with id \"\" between {_pos1} and {_pos2}",
"broadcast last created bound",
"resize last created bound between {_pos1^2} and {_pos2^2}"})
@Since("INSERT VERSION")
@Since("2.15.0")
public class ExprLastCreatedBound extends SimpleExpression<Bound> {

private static final BoundConfig boundConfig = SkBee.getPlugin().getBoundConfig();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"create a copy of bound with id \"some_bound\" with id \"some_bound_copy\":",
"\tresize the bound between {_pos1} and {_pos2}",
"\tadd {_player} to bound owners of bound"})
@Since("INSERT VERSION")
@Since("2.15.0")
public class EffSecBoundCopy extends EffectSection {

private static final BoundConfig boundConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public boolean canParse(ParseContext context) {
.description("Creates a new AxisAngle4f using a vector and angle (Will be converted and returned as a Quaternion).",
"I have no clue what this is, ask ThatOneWizard!")
.examples("set {_v} to betterAxisAngle(0.25, vector(0,0,1))")
.since("INSERT VERSION"));
.since("2.15.0"));

Functions.registerFunction(new SimpleJavaFunction<>("transformation", new Parameter[]{
new Parameter<>("translation", DefaultClasses.VECTOR, true, null),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"play hurt animation on all players",
"play hurt animation on all players with yaw 270",
"play hurt animation on all mobs"})
@Since("INSERT VERSION")
@Since("2.15.0")
public class EffHurtAnimation extends Effect {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"\ttrigger:",
"\t\tif parse effect arg-1 = false:",
"\t\t\tsend \"ERROR: %arg-1%\""})
@Since("INSERT VERSION")
@Since("2.15.0")
public class ExprParseEffect extends SimpleExpression<Boolean> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Description("Merge multiple components into one. If adding strings/texts, they will be converted into components.")
@Examples({"set {_t} to merge components {_t::*}",
"set {_t} to merge components {_t::*} joined with newline"})
@Since("2.4.0, 2.8.5 (delimiter), INSERT VERSION (strings)")
@Since("2.4.0, 2.8.5 (delimiter), 2.15.0 (strings)")
public class ExprMergeComponents extends SimpleExpression<ComponentWrapper> {

static {
Expand Down

0 comments on commit 48875e9

Please sign in to comment.