Skip to content

Commit

Permalink
Require 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Jun 12, 2021
1 parent abe2ede commit 1da8139
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,25 +160,30 @@ public enum ServerVersion {
/**
* @since 1.14.0
*/
V1_16_1(Compatibility.NOT_SUPPORTED),
V1_16_1(Compatibility.INCOMPATIBLE),
/**
* @since 1.15.0
*/
V1_16_2(Compatibility.NOT_SUPPORTED),
V1_16_2(Compatibility.INCOMPATIBLE),
/**
* @since 1.15.1
*/
V1_16_3(Compatibility.NOT_SUPPORTED),
V1_16_3(Compatibility.INCOMPATIBLE),

/**
* @since 1.15.3
*/
V1_16_4(Compatibility.COMPATIBLE),
V1_16_4(Compatibility.INCOMPATIBLE),

/**
* @since 1.16.0
*/
V1_16_5(Compatibility.COMPATIBLE)
V1_16_5(Compatibility.INCOMPATIBLE),

/**
* @since 1.17.0
*/
V1_17(Compatibility.COMPATIBLE)
;

private Compatibility compatibility;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: BentoBox
main: world.bentobox.bentobox.BentoBox
version: ${project.version}${build.number}
api-version: "1.15"
api-version: "1.17"

authors: [tastybento, Poslovitch]
contributors: ["The BentoBoxWorld Community"]
Expand Down

0 comments on commit 1da8139

Please sign in to comment.