diff --git a/ChangeLog.md b/ChangeLog.md index fb763bd32..c091a0c81 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,6 +7,22 @@ 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] + +### Additions +* Added inventory capacity counter + +### Fixes +* Prevent creepers from blowing up stairs +* Updated localisation +* Fixed Russian font +* Fixed performance issues +* Fixed corner rendering of some tiles +* Fixed overworld rendering as totally black at night +* Fixed some keys not bound to cursor mappings +* Fixed a wrong texture +* Fixed problems with screenshot feature + ## [2.2.0] ### Additions diff --git a/build.gradle b/build.gradle index 3e430917d..b23440e61 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { allprojects { apply plugin: "java" - version = "2.2.0" + version = "2.2.1" 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 b5a61c39e..3d9cebc8e 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.0"); + public static final Version VERSION = new Version("2.2.1"); public static InputHandler input; // Input used in Game, Player, and just about all the *Menu classes. public static Player player;