Skip to content

Commit

Permalink
Prepare For Release (2.10.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
APickledWalrus committed Jan 15, 2025
1 parent 1fab937 commit b57cec9
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
Expand Up @@ -5,7 +5,7 @@ org.gradle.parallel=true

groupid=ch.njol
name=skript
version=2.10.0-pre1
version=2.10.0
jarName=Skript.jar
testEnv=java21/paper-1.21.4
testEnvJavaVersion=21
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ public String toVariableNameString(DynamicFunctionReference<?> function) {
.description("Something that has a value.")
.usage("")
.examples("the text of {node}")
.since("INSERT VERSION")
.since("2.10")
);

Classes.registerClass(new AnyInfo<>(AnyContains.class, "containing")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/expressions/ExprTypeOf.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
})
@Examples({"on rightclick on an entity:",
"\tmessage \"This is a %type of clicked entity%!\""})
@Since("1.4, 2.5.2 (potion effect), 2.7 (block datas), INSERT VERSION (enchantment type)")
@Since("1.4, 2.5.2 (potion effect), 2.7 (block datas), 2.10 (enchantment type)")
public class ExprTypeOf extends SimplePropertyExpression<Object, Object> {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/expressions/ExprValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# timespan value of {_node} = 12 hours (duration)""",

})
@Since("2.10 (Nodes), INSERT VERSION (Any)")
@Since("2.10 (Nodes), 2.10 (Any)")
public class ExprValue extends SimplePropertyExpression<Object, Object> {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/structures/StructExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
broadcast "hello world"
# this is never run"""
})
@Since("INSERT VERSION")
@Since("2.10")
public class StructExample extends Structure {

public static final Priority PRIORITY = new Priority(550);
Expand Down

0 comments on commit b57cec9

Please sign in to comment.