From 1fe608fc310e6b7ad8267e85e9fb12b8737d6d3e Mon Sep 17 00:00:00 2001 From: Makkkkus <37084190+Makkkkus@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:46:27 +0100 Subject: [PATCH] Increment version to 2.3.0-dev1 --- ChangeLog.md | 2 +- build.gradle | 2 +- src/client/java/minicraft/core/Game.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 14a3d4f46..afb5749bf 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), but some sections are changed to compliant this project. -## [2.2.1] +## [2.3.0] ### Additions diff --git a/build.gradle b/build.gradle index e3918b62a..7b0b3fe81 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { allprojects { apply plugin: "java" - version = "2.2.1-dev2" + version = "2.3.0-dev1" sourceCompatibility = 8 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' diff --git a/src/client/java/minicraft/core/Game.java b/src/client/java/minicraft/core/Game.java index 0be9e3420..93c71eefe 100644 --- a/src/client/java/minicraft/core/Game.java +++ b/src/client/java/minicraft/core/Game.java @@ -25,7 +25,7 @@ protected Game() { public static final String NAME = "Minicraft Plus"; // This is the name on the application window. - public static final Version VERSION = new Version("2.2.1-dev2"); + public static final Version VERSION = new Version("2.3.0-dev1"); public static InputHandler input; // Input used in Game, Player, and just about all the *Menu classes. public static Player player;