Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare For Release (2.9.0) #6903

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.9.0-pre2
version=2.9.0
jarName=Skript.jar
testEnv=java21/paper-1.21.0
testEnvJavaVersion=21
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffBroadcast.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public boolean init(Expression<?>[] exprs, int matchedPattern, Kleenean isDelaye
}

/**
* This effect will call {@link BroadcastMessageEvent} as of INSERT_VERSION.
* This effect will call {@link BroadcastMessageEvent} as of 2.9.0.
*/
@Override
@SuppressWarnings("deprecation")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/expressions/ExprInput.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"send \"congrats on being staff!\" to all players where [input has permission \"staff\"]",
"sort {_list::*} based on length of input index"
})
@Since("2.2-dev36, INSERT_VERSION (input index)")
@Since("2.2-dev36, 2.9.0 (input index)")
public class ExprInput<T> extends SimpleExpression<T> {

static {
Expand Down
Loading