build: Release 2.2.0

This commit is contained in:
Alexander Brandes 2022-05-18 21:46:22 +02:00
parent 0d2ed796d8
commit 3c4695bb73
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
6 changed files with 8 additions and 8 deletions

View File

@ -22,7 +22,7 @@ logger.lifecycle("""
*******************************************
""")
var rootVersion by extra("2.1.3")
var rootVersion by extra("2.2.0")
var snapshot by extra("SNAPSHOT")
var revision: String by extra("")
var buildNumber by extra("")
@ -40,7 +40,7 @@ ext {
}
}
version = String.format("%s-%s", rootVersion, buildNumber)
version = String.format("%s", rootVersion)
if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")

View File

@ -39,7 +39,7 @@ public class BufferedPattern extends AbstractPattern implements ResettablePatter
* @param actor actor associated with the pattern
* @param parent pattern to set
* @param region anticipated area of the edit
* @since TODO
* @since 2.3.0
*/
public BufferedPattern(Actor actor, Pattern parent, @Nullable Region region) {
long[] tmp = actor.getMeta("lastActionTime");

View File

@ -25,7 +25,7 @@ public class BufferedPattern2D extends BufferedPattern {
* @param actor actor associated with the pattern
* @param parent pattern to set
* @param region anticipated area of the edit
* @since TODO
* @since 2.3.0
*/
public BufferedPattern2D(Actor actor, Pattern parent, @Nullable Region region) {
super(actor, parent, region);

View File

@ -48,7 +48,7 @@ public class LocalBlockVectorSet implements BlockVector3Set {
* @param x x offset
* @param y y offset
* @param z z offset
* @since TODO
* @since 2.3.0
*/
public LocalBlockVectorSet(int x, int y, int z) {
this.offsetX = x;
@ -159,7 +159,7 @@ public class LocalBlockVectorSet implements BlockVector3Set {
* @param x x offset
* @param y y offset
* @param z z offset
* @since TODO
* @since 2.3.0
*/
public void setOffset(int x, int y, int z) {
this.offsetX = x;

View File

@ -351,7 +351,7 @@ public class ParserContext {
* supplied.
*
* @return Region representing the selection for this context or null if it cannot be retrieved.
* @since TODO
* @since 2.3.0
*/
public Region getSelection() {
if (session != null) {

View File

@ -74,7 +74,7 @@ public interface World extends Extent, Keyed, IChunkCache<IChunkGet> {
* Get the name of the world. If the world referenced has been unloaded, this will still return the name.
*
* @return a name for the world
* @since TODO
* @since 2.3.0
*/
String getNameUnsafe();
//FAWE end