Skip to content

Commit

Permalink
Update dependencies to support MC 1.21.3 (#122)
Browse files Browse the repository at this point in the history
This just solves the inability to use the inventory GUI on servers of
version 1.21.3
  • Loading branch information
mizarc authored Jan 3, 2025
2 parents 4c38f3f + e6c5494 commit 334fa71
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

## [0.3.7]
This is a version bump only release. Update to support MC version 1.21.3.

### Fixed
- Inability to use inventory GUIs with MC 1.21.3

## [0.3.6]

### Added
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "dev.mizarc"
version = "0.3.6"
version = "0.3.7"

repositories {
mavenCentral()
Expand All @@ -29,16 +29,16 @@ repositories {
dependencies {
testImplementation(kotlin("test"))
testImplementation("io.mockk:mockk:1.13.11")
testImplementation("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
testImplementation("io.papermc.paper:paper-api:1.21.3-R0.1-SNAPSHOT")
testImplementation("com.github.MilkBowl:VaultAPI:1.7")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.21.3-R0.1-SNAPSHOT")
shadow("org.jetbrains.kotlin:kotlin-stdlib")
implementation ("org.slf4j:slf4j-nop:2.0.13")
implementation("com.zaxxer:HikariCP:5.1.0")
implementation("co.aikar:acf-paper:0.5.1-SNAPSHOT")
implementation("co.aikar:idb-core:1.0.0-SNAPSHOT")
implementation("com.github.stefvanschie.inventoryframework:IF:0.10.17")
implementation("com.github.stefvanschie.inventoryframework:IF:0.10.19")
compileOnly("com.github.MilkBowl:VaultAPI:1.7")
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: BellClaims
version: 0.3.6
version: 0.3.7
api-version: '1.21'
main: dev.mizarc.bellclaims.BellClaims
softdepend: [Vault]

0 comments on commit 334fa71

Please # to comment.