diff --git a/gradle.properties b/gradle.properties index 813babd..e5ccc2e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,5 +5,5 @@ org.gradle.parallel=true kotlin.incremental=true kotlin.code.style=official -version=2.1.2 -flkVersion=1.10.8 +version=2.1.3 +flkVersion=1.10.10 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a4a9e11..f41fabc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,15 +1,15 @@ [versions] -atomic = "0.21.0" -coroutines = "1.7.2" -datetime = "0.4.0" -dokka = "1.8.20" -kotlin = "1.9.0" +atomic = "0.22.0" +coroutines = "1.7.3" +datetime = "0.4.1" +dokka = "1.9.0" +kotlin = "1.9.10" minecraft = "1.20.1" -qsl = "6.0.4+1.20.1" -quilt_loader = "0.19.2" -quilt_mappings = "1.20.1+build.21" -serialization = "1.5.1" -serialization_plugin = "1.9.0" # usually same as kotlin but can lag behind +qsl = "6.1.1+1.20.1" +quilt_loader = "0.20.2" +quilt_mappings = "1.20.1+build.23" +serialization = "1.6.0" +serialization_plugin = "1.9.10" # usually same as kotlin but can lag behind binary_compat_plugin = "0.13.2" [libraries] @@ -28,7 +28,7 @@ serialization_core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-cor serialization_json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", version.ref = "serialization" } [plugins] -detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.0" } +detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.1" } dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } git_hooks = { id = "com.github.jakemarsden.git-hooks", version = "0.0.2" } kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } @@ -36,5 +36,5 @@ licenser = { id = "org.quiltmc.gradle.licenser", version = "2.0.1" } quilt_loom = { id = "org.quiltmc.loom", version = "1.+" } serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "serialization_plugin" } binary_compatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "binary_compat_plugin" } -minotaur = { id = "com.modrinth.minotaur", version = "2.8.1" } +minotaur = { id = "com.modrinth.minotaur", version = "2.8.2" } cursegradle = { id = "com.matthewprenger.cursegradle", version = "1.4.0" } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 033e24c..7f93135 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c244788..864d6c4 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1 -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip +distributionSha256Sum=591855b517fc635b9e04de1d05d5e76ada3f89f5fc76f87978d1b245b4f69225 +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index fcb6fca..0adc8e1 100755 --- a/gradlew +++ b/gradlew @@ -83,7 +83,8 @@ done # This is normally unused # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/EventRegistration.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/EventRegistration.kt index 99da121..49a6d23 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/EventRegistration.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/EventRegistration.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/MixinAccessors.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/MixinAccessors.kt index edbbf9b..0bad086 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/MixinAccessors.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/MixinAccessors.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentConstructor.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentConstructor.kt index e86ecc1..9be2889 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentConstructor.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentConstructor.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentReader.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentReader.kt index cc951e5..288c72e 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentReader.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentReader.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/CommandExecution.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/CommandExecution.kt index 051e8a6..f427b0c 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/CommandExecution.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/CommandExecution.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/BlockArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/BlockArguments.kt index 3a45cb9..bf09e86 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/BlockArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/BlockArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/EnumArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/EnumArguments.kt index 73d8d89..c632e96 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/EnumArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/EnumArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/GeometricArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/GeometricArguments.kt index 8f0d4ce..1b1de32 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/GeometricArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/GeometricArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/IdentifierArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/IdentifierArguments.kt index bd92990..627d02b 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/IdentifierArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/IdentifierArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/ItemArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/ItemArguments.kt index 6d88a3b..072a479 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/ItemArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/ItemArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/NBTArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/NBTArguments.kt index 9b8f72d..fd54a2f 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/NBTArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/NBTArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PlayerArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PlayerArguments.kt index e96fe0f..f49337b 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PlayerArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PlayerArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PrimitiveArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PrimitiveArguments.kt index 0ba1622..bdcbd1d 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PrimitiveArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PrimitiveArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/RangeArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/RangeArguments.kt index 1745ead..d1053aa 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/RangeArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/RangeArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/StringArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/StringArguments.kt index 08f6fc4..f2f2907 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/StringArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/StringArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/TestingArguments.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/TestingArguments.kt index 53b86d9..eed75c8 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/TestingArguments.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/TestingArguments.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/util/RequiredChain.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/util/RequiredChain.kt index 50aeef6..baafad8 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/util/RequiredChain.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/util/RequiredChain.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/crash/CrashEvents.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/crash/CrashEvents.kt index 202a9d7..653d549 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/crash/CrashEvents.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/crash/CrashEvents.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/lifecycle/ServerEvents.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/lifecycle/ServerEvents.kt index 8a3c59f..af2b244 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/lifecycle/ServerEvents.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/lifecycle/ServerEvents.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/CompoundOperators.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/CompoundOperators.kt index 71254fd..fd64cdf 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/CompoundOperators.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/CompoundOperators.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtConversions.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtConversions.kt index 7b5a084..e559f14 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtConversions.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtConversions.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtDelegates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtDelegates.kt index d56576f..e90e7b8 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtDelegates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtDelegates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtListDelegates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtListDelegates.kt index 23a3a82..3d434fe 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtListDelegates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtListDelegates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/networking/PlayerLookups.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/networking/PlayerLookups.kt index 5ea38b3..76a35cc 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/networking/PlayerLookups.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/networking/PlayerLookups.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/recipe/RecipeEvents.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/recipe/RecipeEvents.kt index 70cdf35..760bfa7 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/recipe/RecipeEvents.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/recipe/RecipeEvents.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/registry/RegistryDelegation.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/registry/RegistryDelegation.kt index cabe11c..bb32713 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/registry/RegistryDelegation.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/registry/RegistryDelegation.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/CodecFactory.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/CodecFactory.kt index df9e8ef..952ca7d 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/CodecFactory.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/CodecFactory.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/ExtendedDynamicOps.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/ExtendedDynamicOps.kt index 341aacf..b094ff2 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/ExtendedDynamicOps.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/ExtendedDynamicOps.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecEntryListMap.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecEntryListMap.kt index 1d080ee..0f2bb99 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecEntryListMap.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecEntryListMap.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecSerializable.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecSerializable.kt index 6e4c7b1..8cbc3a7 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecSerializable.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecSerializable.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializationException.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializationException.kt index 4710bd1..498ccd0 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializationException.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializationException.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializerAdapter.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializerAdapter.kt index 12b1188..d320776 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializerAdapter.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializerAdapter.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/DefaultExtendedOps.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/DefaultExtendedOps.kt index 1b99b8a..f20fa05 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/DefaultExtendedOps.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/DefaultExtendedOps.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/ExtendedJsonOps.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/ExtendedJsonOps.kt index 3e2bfdc..080dedd 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/ExtendedJsonOps.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/ExtendedJsonOps.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/SerializationState.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/SerializationState.kt index a0ef26b..c72df04 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/SerializationState.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/SerializationState.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/BasicStates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/BasicStates.kt index f8fe4bb..785f9fe 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/BasicStates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/BasicStates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/ClassStates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/ClassStates.kt index c79526b..adbe845 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/ClassStates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/ClassStates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/CollectionStates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/CollectionStates.kt index 07d7365..5b5f3af 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/CollectionStates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/CollectionStates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DecoderState.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DecoderState.kt index 0f1d5a9..7cd1bb6 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DecoderState.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DecoderState.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DynamicDecoder.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DynamicDecoder.kt index f53654d..d46d1b3 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DynamicDecoder.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DynamicDecoder.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/BasicStates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/BasicStates.kt index 27d9e23..d998f88 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/BasicStates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/BasicStates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/ClassStates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/ClassStates.kt index 474990a..ef7f5ba 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/ClassStates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/ClassStates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/CollectionStates.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/CollectionStates.kt index 50ef7af..feaccdc 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/CollectionStates.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/CollectionStates.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/DynamicEncoder.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/DynamicEncoder.kt index 90cdc90..750201d 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/DynamicEncoder.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/DynamicEncoder.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/EncoderState.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/EncoderState.kt index 37eafb8..f45d9db 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/EncoderState.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/EncoderState.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/AnnotationUtil.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/AnnotationUtil.kt index b6a8e88..ce19ee0 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/AnnotationUtil.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/AnnotationUtil.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/DataUtil.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/DataUtil.kt index 38111ba..af6ab3c 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/DataUtil.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/DataUtil.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/ValidationUtil.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/ValidationUtil.kt index 4b2f2f6..decc74a 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/ValidationUtil.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/ValidationUtil.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/options/CodecOptions.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/options/CodecOptions.kt index 0eb611d..a79e115 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/options/CodecOptions.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/serialization/options/CodecOptions.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/text/Color.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/text/Color.kt index 77d76be..cc7ccdb 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/text/Color.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/text/Color.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/text/StyleDsl.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/text/StyleDsl.kt index fee3e5a..a680c5b 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/text/StyleDsl.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/text/StyleDsl.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextDsl.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextDsl.kt index 22988ec..48ee06d 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextDsl.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextDsl.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextEvents.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextEvents.kt index bb7e575..7bedc0a 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextEvents.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/text/TextEvents.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/org/quiltmc/qkl/library/worlds/DimensionExtensions.kt b/library/src/main/kotlin/org/quiltmc/qkl/library/worlds/DimensionExtensions.kt index 71881cd..0ac3936 100644 --- a/library/src/main/kotlin/org/quiltmc/qkl/library/worlds/DimensionExtensions.kt +++ b/library/src/main/kotlin/org/quiltmc/qkl/library/worlds/DimensionExtensions.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/samples/qkl/nbt/NbtSamples.kt b/library/src/main/kotlin/samples/qkl/nbt/NbtSamples.kt index 85d9104..14ef869 100644 --- a/library/src/main/kotlin/samples/qkl/nbt/NbtSamples.kt +++ b/library/src/main/kotlin/samples/qkl/nbt/NbtSamples.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/samples/qkl/serialization/BasicSerializationTests.kt b/library/src/main/kotlin/samples/qkl/serialization/BasicSerializationTests.kt index 7d2f891..3cc90ec 100644 --- a/library/src/main/kotlin/samples/qkl/serialization/BasicSerializationTests.kt +++ b/library/src/main/kotlin/samples/qkl/serialization/BasicSerializationTests.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/samples/qkl/serialization/MapSerializationTests.kt b/library/src/main/kotlin/samples/qkl/serialization/MapSerializationTests.kt index 5897ab7..65e2fab 100644 --- a/library/src/main/kotlin/samples/qkl/serialization/MapSerializationTests.kt +++ b/library/src/main/kotlin/samples/qkl/serialization/MapSerializationTests.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/samples/qkl/serialization/NullableSerializationTests.kt b/library/src/main/kotlin/samples/qkl/serialization/NullableSerializationTests.kt index 12b9b2a..b768f65 100644 --- a/library/src/main/kotlin/samples/qkl/serialization/NullableSerializationTests.kt +++ b/library/src/main/kotlin/samples/qkl/serialization/NullableSerializationTests.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/samples/qkl/serialization/PolymorphicSerializationTests.kt b/library/src/main/kotlin/samples/qkl/serialization/PolymorphicSerializationTests.kt index 45ddbc4..6901f0c 100644 --- a/library/src/main/kotlin/samples/qkl/serialization/PolymorphicSerializationTests.kt +++ b/library/src/main/kotlin/samples/qkl/serialization/PolymorphicSerializationTests.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/samples/qkl/serialization/SerializationTestUtils.kt b/library/src/main/kotlin/samples/qkl/serialization/SerializationTestUtils.kt index 63a7a74..88e3b9a 100644 --- a/library/src/main/kotlin/samples/qkl/serialization/SerializationTestUtils.kt +++ b/library/src/main/kotlin/samples/qkl/serialization/SerializationTestUtils.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/library/src/main/kotlin/samples/qkl/text/TextDslSamples.kt b/library/src/main/kotlin/samples/qkl/text/TextDslSamples.kt index d3765b2..09b1d63 100644 --- a/library/src/main/kotlin/samples/qkl/text/TextDslSamples.kt +++ b/library/src/main/kotlin/samples/qkl/text/TextDslSamples.kt @@ -1,5 +1,5 @@ /* - * Copyright 2022 The Quilt Project + * Copyright 2023 The Quilt Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.