diff --git a/CHANGELOG.md b/CHANGELOG.md index e6b43a9..945e2d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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. +## [Latest] + +### Added +- Protection against players triggering a raid through a bad omen effect. Requires the new raid permission. + +## [0.2.3] +Update to support MC version 1.21.1 + +### Fixed +- Inventory interactions not working in latest 1.21.1 version of MC. + ## [0.2.2] ### Fixed diff --git a/build.gradle.kts b/build.gradle.kts index 18c6c1e..695690b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "dev.mizarc" -version = "0.2.2" +version = "0.2.3" repositories { mavenCentral() @@ -38,7 +38,7 @@ dependencies { 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.15") + implementation("com.github.stefvanschie.inventoryframework:IF:0.10.17") compileOnly("com.github.MilkBowl:VaultAPI:1.7") } diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index b6eda34..36bccef 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,5 +1,5 @@ name: BellClaims -version: 0.2.2 +version: 0.2.3 api-version: '1.21' main: dev.mizarc.bellclaims.BellClaims softdepend: [Vault] \ No newline at end of file