Release 2.4.10

This commit is contained in:
Alexander Brandes 2022-11-15 19:35:25 +01:00
parent 34dbaa633a
commit 1771a04ef9
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ ext {
}
}
version = String.format("%s-%s", rootVersion, buildNumber)
version = String.format("%s", rootVersion)
if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")

View File

@ -48,7 +48,7 @@ public class MinecraftVersion implements Comparable<MinecraftVersion> {
* Construct a new version with major, minor and release based on the server version.
* @deprecated use {@link MinecraftVersion#getCurrent()} instead.
*/
@Deprecated(since = "TODO", forRemoval = true)
@Deprecated(since = "2.4.10", forRemoval = true)
public MinecraftVersion() {
MinecraftVersion current = getCurrent();