From 190099ff6db831826c422a582c24d97112933446 Mon Sep 17 00:00:00 2001 From: Tim Hutton Date: Mon, 15 Aug 2016 17:01:20 +0100 Subject: [PATCH] Minor: increased version to 0.17.0. --- CMakeLists.txt | 4 ++-- Minecraft/src/main/java/com/microsoft/Malmo/MalmoMod.java | 2 +- changelog.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e818b8c5..7c7d2c344 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,8 +24,8 @@ project( Malmo ) # -------------------- Options -------------------------------- set( MALMO_VERSION_MAJOR 0) -set( MALMO_VERSION_MINOR 16) -set( MALMO_VERSION_REVISION 1) +set( MALMO_VERSION_MINOR 17) +set( MALMO_VERSION_REVISION 0) set( MALMO_VERSION ${MALMO_VERSION_MAJOR}.${MALMO_VERSION_MINOR}.${MALMO_VERSION_REVISION} ) # N.B. Check that this version number matches the one in Minecraft/src/main/java/com/microsoft/Malmo/MalmoMod.java diff --git a/Minecraft/src/main/java/com/microsoft/Malmo/MalmoMod.java b/Minecraft/src/main/java/com/microsoft/Malmo/MalmoMod.java index d04f79dfb..5a6894ced 100755 --- a/Minecraft/src/main/java/com/microsoft/Malmo/MalmoMod.java +++ b/Minecraft/src/main/java/com/microsoft/Malmo/MalmoMod.java @@ -67,7 +67,7 @@ public class MalmoMod { public static final String MODID = "malmomod"; - public static final String VERSION = "0.16.1"; // N.B. Check that this version number matches the one in the root CMakeLists.txt and the Schemas. + public static final String VERSION = "0.17.0"; // N.B. Check that this version number matches the one in the root CMakeLists.txt and the Schemas. public static final String SOCKET_CONFIGS = "malmoports"; public static final String DIAGNOSTIC_CONFIGS = "malmodiags"; public static final String AUTHENTICATION_CONFIGS = "malmologins"; diff --git a/changelog.txt b/changelog.txt index 8a9e09ee2..615c14e83 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,4 @@ -0.16.2 +0.17.0 ------------------- Fix: Stopped mobs spawing illegally (#280) New: Added has_mission_begun flag to world state, to solve problems with short missions (#118, #236)