Skip to content

Commit 88ffe0d

Browse files
Prepare For Release (2.16.0-pre1)
1 parent 1ec6afe commit 88ffe0d

34 files changed

Lines changed: 39 additions & 39 deletions

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ org.gradle.parallel=true
55

66
groupid=ch.njol
77
name=skript
8-
version=2.15.4
8+
version=2.16.0-pre1
99
jarName=Skript.jar
1010
testEnv=java25/paper-26.1.2
1111
testEnvJavaVersion=25

src/main/java/ch/njol/skript/classes/EnumClassInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public EnumClassInfo(Class<T> enumClass, String codeName, String languageNode, D
6868
* @param registerComparator Whether a default comparator should be registered for this enum's classinfo
6969
* @deprecated {@code registerComparator} is no longer necessary.
7070
*/
71-
@Deprecated(since = "INSERT VERSION", forRemoval = true)
71+
@Deprecated(since = "2.16", forRemoval = true)
7272
public EnumClassInfo(Class<T> enumClass, String codeName, String languageNode, boolean registerComparator) {
7373
this(enumClass, codeName, languageNode, new EventValueExpression<>(enumClass));
7474
}
@@ -81,7 +81,7 @@ public EnumClassInfo(Class<T> enumClass, String codeName, String languageNode, b
8181
* @param registerComparator Whether a default comparator should be registered for this enum's classinfo
8282
* @deprecated {@code registerComparator} is no longer necessary.
8383
*/
84-
@Deprecated(since = "INSERT VERSION", forRemoval = true)
84+
@Deprecated(since = "2.16", forRemoval = true)
8585
public EnumClassInfo(Class<T> enumClass, String codeName, String languageNode, DefaultExpression<T> defaultExpression, boolean registerComparator) {
8686
this(enumClass, codeName, languageNode, defaultExpression);
8787
}

src/main/java/ch/njol/skript/classes/data/DefaultFunctions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ public OfflinePlayer[] executeSimple(Object[][] params) {
707707
"kill entity({uuid})",
708708
"set {_type} to type of entity({uuid})"
709709
)
710-
.since("INSERT VERSION")
710+
.since("2.16")
711711
.parameter("uuid", UUID.class)
712712
.build(args -> {
713713
UUID uuid = args.get("uuid");

src/main/java/ch/njol/skript/classes/registry/RegistryClassInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public RegistryClassInfo(Class<R> registryClass, Registry<R> registry, String co
7474
* @param registerComparator Whether a default comparator should be registered for this registry's classinfo
7575
* @deprecated {@code registerComparator} is no longer necessary.
7676
*/
77-
@Deprecated(since = "INSERT VERSION", forRemoval = true)
77+
@Deprecated(since = "2.16", forRemoval = true)
7878
public RegistryClassInfo(Class<R> registryClass, Registry<R> registry, String codeName, String languageNode, boolean registerComparator) {
7979
this(registryClass, registry, codeName, languageNode, new EventValueExpression<>(registryClass));
8080
}
@@ -88,7 +88,7 @@ public RegistryClassInfo(Class<R> registryClass, Registry<R> registry, String co
8888
* @param registerComparator Whether a default comparator should be registered for this registry's classinfo
8989
* @deprecated {@code registerComparator} is no longer necessary.
9090
*/
91-
@Deprecated(since = "INSERT VERSION", forRemoval = true)
91+
@Deprecated(since = "2.16", forRemoval = true)
9292
public RegistryClassInfo(Class<R> registryClass, Registry<R> registry, String codeName, String languageNode, DefaultExpression<R> defaultExpression, boolean registerComparator) {
9393
this(registryClass, registry, codeName, languageNode, defaultExpression);
9494
}

src/main/java/ch/njol/skript/conditions/CondLeashed.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
@Name("Is Leashed")
1212
@Description("Checks to see if an entity is currently leashed.")
1313
@Example("target entity is leashed")
14-
@Since("2.5, INSERT VERSION (all leashable entities)")
14+
@Since("2.5, 2.16 (all leashable entities)")
1515
public class CondLeashed extends PropertyCondition<Entity> {
1616

1717
static {

src/main/java/ch/njol/skript/effects/Delay.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
send "This runs third! (one second later)" to player
4949
send "This runs second!" to player
5050
""")
51-
@Since("1.4, INSERT VERSION (Delayed Sections)")
51+
@Since("1.4, 2.16 (Delayed Sections)")
5252
public class Delay extends EffectSection {
5353

5454
static {

src/main/java/ch/njol/skript/effects/EffLeash.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
leash event-entity to player
2626
send "&aYou leashed &2%event-entity%!" to player
2727
""")
28-
@Since("2.3, INSERT VERSION (all leashable entities)")
28+
@Since("2.3, 2.16 (all leashable entities)")
2929
public class EffLeash extends Effect {
3030

3131
static {

src/main/java/ch/njol/skript/expressions/ExprLeashHolder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@Name("Leash Holder")
1414
@Description("The leash holder of an entity.")
1515
@Example("set {_example} to the leash holder of the target mob")
16-
@Since("2.3, INSERT VERSION (all leashable entities)")
16+
@Since("2.3, 2.16 (all leashable entities)")
1717
public class ExprLeashHolder extends SimplePropertyExpression<Entity, Entity> {
1818

1919
static {

src/main/java/org/skriptlang/skript/bukkit/bossbar/BossBarClassInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public BossBarClassInfo(SkriptAddon addon) {
2929
Represents a boss bar.
3030
A boss bar is displayed at the top of a players screen and can have its title, progress, style, color, and viewers changed.
3131
""")
32-
.since("INSERT VERSION")
32+
.since("2.16")
3333
.parser(new BossBarParser())
3434
.changer(new BossBarChangeHandler())
3535
.defaultExpression(new EventValueExpression<>(BossBar.class))

src/main/java/org/skriptlang/skript/bukkit/bossbar/BossBarModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ protected void initSelf(SkriptAddon addon) {
2525
.user("boss ?bar styles?")
2626
.name("Boss Bar Style")
2727
.description("The style of a boss bar.")
28-
.since("INSERT VERSION"));
28+
.since("2.16"));
2929
}
3030

3131
@Override

0 commit comments

Comments
 (0)