···55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7788+### [v1.2.1]
99+- Added support for 1.21.4
1010+- Added Traditional Chinese translations (Thanks to [hugoalh](https://github.com/hugoalh)!)
1111+812### [v1.2.0]
913- Added the following warp related commands: `/warp` `/setwarp` `/delwarp` `/renamewarp` and `/warps`
1014- Added `/worldspawn`
···2525- Dutch (nl_nl): [Mr. Snowy](https://github.com/MrSn0wy)
2626- Hungarian (hu_hu): [Martin Morningstar](https://github.com/RMI637)
2727- Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu)
2828-- Russian (ru_ru): [rfin0](https://github.com/rfin0)2828+- Russian (ru_ru): [rfin0](https://github.com/rfin0)
2929+- Chinese Traditional (zw_tw): [hugoalh](https://github.com/hugoalh)
+7-7
gradle.properties
···22# Every field you add must be added to the root build.gradle expandProps map.
3344# Project
55-version=1.2.0
55+version=1.2.1
66group=dev.mrsnowy.teleport_commands
77java_version=21
8899# Common
1010-minecraft_version=1.21.2
1010+minecraft_version=1.21.4
1111mod_name=Teleport Commands
1212mod_author=Mr. Snowy
1313mod_id=teleport_commands
1414license=MIT
1515credits=Mr. Snowy
1616description=A server-side mod that adds various teleportation related commands.
1717-minecraft_version_range=[1.21.2,1.22]
1717+minecraft_version_range=[1.21.4,1.22]
18181919# Fabric
2020-fabric_loader_version=0.15.11
2020+fabric_loader_version=0.16.9
2121#fabric_api=0.97.0+1.20.4
2222-fabric_loom=1.8-SNAPSHOT
2222+fabric_loom=1.9-SNAPSHOT
23232424# Quilt (Currently disabled since fabric port works better)
2525#quilt_loader_version=0.25.0
···282829293030# NeoForge
3131-neoforge_version=21.2.1-beta
3131+neoforge_version=21.4.0-beta
3232neoforge_loader_version_range=[2,)
3333-NeoGradle=7.0.168
3333+NeoGradle=7.0.171
34343535# Gradle
3636org.gradle.jvmargs=-Xmx6G
···1717[[dependencies.${mod_id}]] #optional
1818modId = "neoforge" #mandatory
1919type="required" #mandatory (Can be one of "required", "optional", "incompatible" or "discouraged")
2020-versionRange = "${neoforge_loader_version_range}" #mandatory
2020+versionRange = "[${neoforge_version},)" #mandatory
2121ordering = "NONE" # The order that this dependency should load in relation to your mod, required to be either 'BEFORE' or 'AFTER' if the dependency is not mandatory
2222side = "BOTH" # Side this dependency is applied on - 'BOTH', 'CLIENT' or 'SERVER'
2323[[dependencies.${mod_id}]]