From e26a15d26ad0eae7a14b87741fa2c398299c40a1 Mon Sep 17 00:00:00 2001 From: Gravit Date: Sun, 15 Mar 2020 23:16:31 +0700 Subject: [PATCH] [ANY] 5.1.2 --- LauncherCore/src/main/java/pro/gravit/utils/Version.java | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LauncherCore/src/main/java/pro/gravit/utils/Version.java b/LauncherCore/src/main/java/pro/gravit/utils/Version.java index eeb67e46..f55f4bef 100644 --- a/LauncherCore/src/main/java/pro/gravit/utils/Version.java +++ b/LauncherCore/src/main/java/pro/gravit/utils/Version.java @@ -15,9 +15,9 @@ public final class Version { public final Type release; public static final int MAJOR = 5; public static final int MINOR = 1; - public static final int PATCH = 1; - public static final int BUILD = 2; - public static final Version.Type RELEASE = Type.BETA; + public static final int PATCH = 2; + public static final int BUILD = 1; + public static final Version.Type RELEASE = Type.DEV; public Version(int major, int minor, int patch) { diff --git a/build.gradle b/build.gradle index 80e39138..2583ada3 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ id 'org.openjfx.javafxplugin' version '0.0.7' apply false } group = 'pro.gravit.launcher' -version = '5.1.1' +version = '5.1.2-SNAPSHOT' configure(subprojects.findAll { it.name != 'modules' }) { apply plugin: 'idea'