Change version of the Game to be 0.1.0

This commit is contained in:
Austen McDonald
2016-06-04 12:00:06 -07:00
parent ad49ab05f8
commit 51a9582a3d
+5 -2
View File
@@ -22,10 +22,13 @@ class Game
$this->eventManager = $eventManager;
}
/**
* Return the current version of the core, conforming to Semantic Versioning.
* @return string The current version, in x.y.z format.
*/
public static function getVersion(): string
{
// Conforms to semantic versioning.
return '0.0.1';
return '0.1.0';
}
/**