From ea465034429401c0586b3cf05b9a6c9ef5b8ea88 Mon Sep 17 00:00:00 2001 From: Nato Boram Date: Sun, 30 Jun 2024 21:31:45 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Update=20version=20number=20to?= =?UTF-8?q?=20v1.0.14=20(#22)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🔖 Update version number to v1.0.14 * 📝 Add enable/disable commands to `README.md` --- CHANGELOG.md | 25 ++++++++++++++++--------- README.md | 1 + gradle.properties | 2 +- minepkg.toml | 4 ++-- src/main/resources/fabric.mod.json | 2 +- 5 files changed, 21 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be7dd39..e001f93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/) and this ## [Unreleased] +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [1.0.14] - 2024-06-30 + > [!NOTE] > The Mace has lower damage per seconds than bare hands. The mod will not attempt to switch out of it, but won't switch into it either. @@ -20,14 +34,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/) and this - Updated to Minecraft 1.21 -### Deprecated - -### Removed - -### Fixed - -### Security - ## [1.0.13] - 2024-05-25 ### Added @@ -179,7 +185,8 @@ The switcheroo technically works, but it's kinda annoying and awkward to use. Pl - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. -[Unreleased]: https://github.com/NatoBoram/switcheroo/compare/v1.0.13...main +[Unreleased]: https://github.com/NatoBoram/switcheroo/compare/v1.0.14...main +[1.0.14]: https://github.com/NatoBoram/switcheroo/releases/tag/v1.0.14 [1.0.13]: https://github.com/NatoBoram/switcheroo/releases/tag/v1.0.13 [1.0.12]: https://github.com/NatoBoram/switcheroo/releases/tag/v1.0.12 [1.0.11]: https://github.com/NatoBoram/switcheroo/releases/tag/v1.0.11 diff --git a/README.md b/README.md index 0a09463..e5b3d2c 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ Switcheroo will use the least effective tool that's still effective to break blo - `/switcheroo prefer silk_touch add dirt_path` - `/switcheroo prefer silk_touch remove dirt_path` - The Silk Touch selection is really shaky, though. Use at your own risk. +- Enable or disable it with `/switcheroo enable` and `/switcheroo disable` ## Installation diff --git a/gradle.properties b/gradle.properties index 7e79cae..4290a0e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ loader_version=0.15.11 fabric_version=0.100.1+1.21 # Mod Properties -mod_version=1.0.13 +mod_version=1.0.14 maven_group=com.natoboram archives_base_name=switcheroo diff --git a/minepkg.toml b/minepkg.toml index 1eb8911..970c521 100755 --- a/minepkg.toml +++ b/minepkg.toml @@ -6,7 +6,7 @@ manifestVersion = 0 type = "mod" name = "switcheroo" description = "Switch your currently held item for an effective item when clicking on a block." -version = "1.0.13" +version = "1.0.14" platform = "fabric" license = "GPL-3.0-or-later" source = "https://github.com/NatoBoram/switcheroo" @@ -20,7 +20,7 @@ fabricLoader = ">=0.15.11" [dependencies] cloth-config = ">=15.0.127+mpkg.1" -fabric = ">=0.92.0+1.21" +fabric = ">=0.100.1+1.21" modmenu = ">=11.0.0-rc.4+mpkg.1" [dev] diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 3abce26..0407b11 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "switcheroo", - "version": "1.0.13", + "version": "1.0.14", "name": "Switcheroo", "description": "Switch your currently held item for an effective item when clicking on a block.", "authors": ["Nato Boram"],