Skip to content

Commit

Permalink
build: Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed May 18, 2022
1 parent 0d2ed79 commit 3c4695b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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("")
Expand All @@ -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")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public BufferedPattern(Actor actor, Pattern parent) {
* @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");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public BufferedPattern2D(Actor actor, Pattern parent) {
* @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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public LocalBlockVectorSet(int x, int z) {
* @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;
Expand Down Expand Up @@ -159,7 +159,7 @@ public void setOffset(int x, int z) {
* @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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public int getMaxY() {
* 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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3c4695b

Please sign in to comment.