Skip to content

Commit

Permalink
release: Version 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
4drian3d committed Nov 30, 2023
1 parent 2b589a9 commit 2e4b7b0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@
.project
.vscode/

*/run/
*/run/
/jar/**
2 changes: 1 addition & 1 deletion build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ repositories {

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(8))
languageVersion.set(JavaLanguageVersion.of(11))
}
}
3 changes: 2 additions & 1 deletion build-logic/src/main/kotlin/lanbroadcaster.shadow.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ tasks {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
archiveFileName.set("${project.name.prettified()}-${project.version}.jar")
archiveClassifier.set("")
destinationDirectory.set(file("${project.rootDir}/jar"))
}
}

Expand All @@ -25,5 +26,5 @@ repositories {
fun String.prettified(): String {
val st = this.substring(15)
val char = st[0]
return "LanBroadcaster${char.toUpperCase()}${st.substring(1)}"
return "LanBroadcaster${char.uppercaseChar()}${st.substring(1)}"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group = me.bhop
version = 2.3.1-SNAPSHOT
version = 2.3.1
description = Broadcasts a Minecraft server over LAN.

0 comments on commit 2e4b7b0

Please sign in to comment.