Skip to content

Commit

Permalink
Increment version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Makkkkus committed Dec 5, 2024
1 parent f2e0dbb commit 778a62b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/client/java/minicraft/core/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 778a62b

Please sign in to comment.