Skip to content

Commit

Permalink
Bump version to 4.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Sytm committed Nov 2, 2024
1 parent 6bc8d73 commit bb8a559
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## 4.5.4

### Added
- Option to disallow teleports to different worlds
- Variable containing the distance between a player and waypoint for the cost formula (`distance`)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2G
org.gradle.warning.mode=all
org.gradle.parallel=true
# Project
version=4.5.3
version=4.5.4
group=de.md5lukas.waypoints

signGuiVersion=1.0.0
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
kotlin = "2.0.21"
coroutines = "1.9.0"
jvmToolchain = "21"
paper = "1.20.6-R0.1-SNAPSHOT"
paper = "1.21.3-R0.1-SNAPSHOT"

dynmap = "3.5-SNAPSHOT"

Expand Down Expand Up @@ -54,7 +54,7 @@ geyser = { group = "org.geysermc.geyser", name = "api", version = "2.4.2-SNAPSHO
# Test dependencies
junitLauncher = { group = "org.junit.platform", name = "junit-platform-launcher" }
junitJupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version = "5.9.2" }
mockBukkit = { group = "com.github.seeseemelk", name = "MockBukkit-v1.20", version = "3.+" }
mockBukkit = { group = "com.github.seeseemelk", name = "MockBukkit-v1.21", version = "3.+" }
sqliteJdbc = { group = "org.xerial", name = "sqlite-jdbc", version = "3.36.0.3" }

[plugins]
Expand Down
2 changes: 1 addition & 1 deletion waypoints/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Run Paper Plugin Directory
run*
run
3 changes: 1 addition & 2 deletions waypoints/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@ tasks {

runServer {
dependsOn("jar")
// minecraftVersion(libs.versions.paper.get().substringBefore('-'))
minecraftVersion("1.21.1")
minecraftVersion(libs.versions.paper.get().substringBefore('-'))

downloadPlugins {
url(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class TranslationFileTest {
}

@ParameterizedTest
@ValueSource(strings = ["en", "de", "zh-simplified", "zh-hk"])
@ValueSource(strings = ["en", "de" /*, "zh-simplified", "zh-hk"*/])
fun verifyLanguageFileCompleteness(language: String) {
val defined = getDefinedKeys(language)

Expand Down

0 comments on commit bb8a559

Please sign in to comment.