Skip to content

Commit

Permalink
Release 7.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Dec 22, 2023
1 parent 6edd4b8 commit 1a33997
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ tasks {
opt.links("https://intellectualsites.github.io/plotsquared-javadocs/core/")
opt.links("https://jd.advntr.dev/api/4.14.0/")
opt.links("https://google.github.io/guice/api-docs/" + libs.guice.get().versionConstraint.toString() + "/javadoc/")
opt.links("https://checkerframework.org/api/")
// opt.links("https://checkerframework.org/api/")
opt.isLinkSource = true
opt.bottom(File("$rootDir/javadocfooter.html").readText())
opt.isUse = true
Expand Down
2 changes: 1 addition & 1 deletion Core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ tasks {
opt.links("https://jd.advntr.dev/api/4.14.0/")
opt.links("https://jd.advntr.dev/text-minimessage/4.14.0/")
opt.links("https://google.github.io/guice/api-docs/" + libs.guice.get().versionConstraint.toString() + "/javadoc/")
opt.links("https://checkerframework.org/api/")
// opt.links("https://checkerframework.org/api/")
opt.isLinkSource = true
opt.bottom(File("$rootDir/javadocfooter.html").readText())
opt.isUse = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* <p>
* May be used to grant a player more plots based on another rank or bought feature.
*
* @since TODO
* @since 7.3.0
*/
public class PlayerPlotLimitEvent {

Expand All @@ -44,7 +44,7 @@ public PlayerPlotLimitEvent(@NonNull final PlotPlayer<?> player, @NonNegative fi
* Overrides the previously calculated or set plot limit for {@link #player()}.
*
* @param limit The amount of plots a player may claim. Must be {@code 0} or greater.
* @since TODO
* @since 7.3.0
*/
public void limit(@NonNegative final int limit) {
if (limit < 0) {
Expand All @@ -58,7 +58,7 @@ public void limit(@NonNegative final int limit) {
* permissions node is returned.
*
* @return The currently defined plot limit of this player.
* @since TODO
* @since 7.3.0
*/
public @NonNegative int limit() {
return limit;
Expand All @@ -68,7 +68,7 @@ public void limit(@NonNegative final int limit) {
* The player for which the limit is queried.
*
* @return the player.
* @since TODO
* @since 7.3.0
*/
public @NonNull PlotPlayer<?> player() {
return player;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
}

group = "com.intellectualsites.plotsquared"
version = "7.2.2-SNAPSHOT"
version = "7.3.0"

if (!File("$rootDir/.git").exists()) {
logger.lifecycle("""
Expand Down

0 comments on commit 1a33997

Please sign in to comment.