Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Aug 30, 2024
1 parent 6693133 commit a787440
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### Changes:
- Added a new config option, `hologram-plugin` which lets you pick a hologram plugin to prioritize
- If you leave it empty, it'll automatically pick one.
### Fixed:
- Fixed an issue with some commands not properly validating virtual keys

### Deprecation
- Deprecated `PlayerPrizeEvent(player, crate, crateName, prize)`
- Please use `PlayerPrizeEvent(player, crate, prize)` as the crateName is already passed through via the `crate` object.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

val buildNumber: String? = System.getenv("BUILD_NUMBER")

rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "3.7.3"
rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "3.7.4"

val isSnapshot = false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class PlayerPrizeEvent extends Event {
private final Prize prize;
private final String crateName;

@Deprecated(since = "3.8", forRemoval = true)
@Deprecated(since = "3.7.4", forRemoval = true)
public PlayerPrizeEvent(@NotNull final Player player, @NotNull final Crate crate, @NotNull final String crateName, @NotNull final Prize prize) {
this.player = player;
this.crate = crate;
Expand Down

0 comments on commit a787440

Please sign in to comment.