Skip to content

Commit 3c4695b

Browse files
committed
build: Release 2.2.0
1 parent 0d2ed79 commit 3c4695b

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ logger.lifecycle("""
2222
*******************************************
2323
""")
2424

25-
var rootVersion by extra("2.1.3")
25+
var rootVersion by extra("2.2.0")
2626
var snapshot by extra("SNAPSHOT")
2727
var revision: String by extra("")
2828
var buildNumber by extra("")
@@ -40,7 +40,7 @@ ext {
4040
}
4141
}
4242

43-
version = String.format("%s-%s", rootVersion, buildNumber)
43+
version = String.format("%s", rootVersion)
4444

4545
if (!project.hasProperty("gitCommitHash")) {
4646
apply(plugin = "org.ajoberstar.grgit")

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/pattern/BufferedPattern.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public BufferedPattern(Actor actor, Pattern parent) {
3939
* @param actor actor associated with the pattern
4040
* @param parent pattern to set
4141
* @param region anticipated area of the edit
42-
* @since TODO
42+
* @since 2.3.0
4343
*/
4444
public BufferedPattern(Actor actor, Pattern parent, @Nullable Region region) {
4545
long[] tmp = actor.getMeta("lastActionTime");

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/pattern/BufferedPattern2D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public BufferedPattern2D(Actor actor, Pattern parent) {
2525
* @param actor actor associated with the pattern
2626
* @param parent pattern to set
2727
* @param region anticipated area of the edit
28-
* @since TODO
28+
* @since 2.3.0
2929
*/
3030
public BufferedPattern2D(Actor actor, Pattern parent, @Nullable Region region) {
3131
super(actor, parent, region);

worldedit-core/src/main/java/com/fastasyncworldedit/core/math/LocalBlockVectorSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public LocalBlockVectorSet(int x, int z) {
4848
* @param x x offset
4949
* @param y y offset
5050
* @param z z offset
51-
* @since TODO
51+
* @since 2.3.0
5252
*/
5353
public LocalBlockVectorSet(int x, int y, int z) {
5454
this.offsetX = x;
@@ -159,7 +159,7 @@ public void setOffset(int x, int z) {
159159
* @param x x offset
160160
* @param y y offset
161161
* @param z z offset
162-
* @since TODO
162+
* @since 2.3.0
163163
*/
164164
public void setOffset(int x, int y, int z) {
165165
this.offsetX = x;

worldedit-core/src/main/java/com/sk89q/worldedit/extension/input/ParserContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public int getMaxY() {
351351
* supplied.
352352
*
353353
* @return Region representing the selection for this context or null if it cannot be retrieved.
354-
* @since TODO
354+
* @since 2.3.0
355355
*/
356356
public Region getSelection() {
357357
if (session != null) {

worldedit-core/src/main/java/com/sk89q/worldedit/world/World.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public interface World extends Extent, Keyed, IChunkCache<IChunkGet> {
7474
* Get the name of the world. If the world referenced has been unloaded, this will still return the name.
7575
*
7676
* @return a name for the world
77-
* @since TODO
77+
* @since 2.3.0
7878
*/
7979
String getNameUnsafe();
8080
//FAWE end

0 commit comments

Comments
 (0)