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 2.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed May 2, 2023
1 parent 1af41d0 commit c624144
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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.8.4</version>
<version>2.8.5</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 @@
"This is only a temp solution until Skript adds a proper solution."})
@Examples({"set {_potion} to infinite potion effect of night vision of tier 1 without particles",
"apply {_potion} to player"})
@Since("INSERT VERSION")
@Since("2.8.5")
public class ExprInfinitePotionEffect extends SimpleExpression<PotionEffect> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Examples({"command /death:",
"\ttrigger:",
"\t\tteleport player to last death location of player"})
@Since("INSERT VERSION")
@Since("2.8.5")
public class ExprLastDeathLocation extends SimplePropertyExpression<OfflinePlayer, Location> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@Description({"Get the duration of a potion effect. If running 1.19.4+ and the potion is infinite,",
"it will return as the max available time."})
@Examples("set {_duration::*} to potion duration of active potion effects of player")
@Since("INSERT VERSION")
@Since("2.8.5")
public class ExprPotionEffectDuration extends SimplePropertyExpression<PotionEffect, Timespan> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@Name("Potion Effect Tier")
@Description("Get the tier of a potion effect.")
@Examples("set {_tiers::*} to potion tiers of active potion effects of player")
@Since("INSERT VERSION")
@Since("2.8.5")
public class ExprPotionEffectTier extends SimplePropertyExpression<PotionEffect,Number> {

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.")
@Examples({"set {_t} to merge components {_t::*}",
"set {_t} to merge components {_t::*} joined with newline"})
@Since("2.4.0, INSERT VERSION (delimiter)")
@Since("2.4.0, 2.8.5 (delimiter)")
public class ExprMergeComponents extends SimpleExpression<BeeComponent> {

static {
Expand Down

0 comments on commit c624144

Please sign in to comment.