Skip to content

Commit

Permalink
build: Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Mar 10, 2022
1 parent c3cdde9 commit 95512a4
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 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.0.2")
var rootVersion by extra("2.1.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
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mcore = "7.0.1"
residence = "4.5._13.1"
towny = "0.97.5.0"
protocollib = "4.7.0"
plotsquared = "6.6.0"
plotsquared = "6.6.1"
redprotect = "1.9.6"

# Third party
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public MinecraftVersion() {
/**
* Get the minecraft version that the server is currently running
*
* @since TODO
* @since 2.1.0
*/
public static MinecraftVersion getCurrent() {
if (current == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ default Map<String, List<Property<?>>> getAllProperties() {
* Returns an {@link IBatchProcessor} instance for post-processing of chunks to sort ticking of placed/existing blocks and
* fluids if the plugin is configured to do so
*
* @since TODO
* @since 2.1.0
*/
default IBatchProcessor getTickingPostProcessor() {
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ default Future<?> postProcessSet(IChunk chunk, IChunkGet get, IChunkSet set) {
* but MAY be flushed to history. Defaults to nothing as most Processors will not use it. If the post-processor will run
* tasks asynchronously/not be blocking, use {@link IBatchProcessor#postProcessSet} to return a Future.
*
* @since TODO
* @since 2.1.0
*/
default void postProcess(IChunk chunk, IChunkGet get, IChunkSet set) {
// Default to above for compatibility and to ensure whatever method is overridden by child classes is called
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static <T extends BinaryTag> T getChildTag(CompoundBinaryTag tag, String
* @param key the key to look for
* @return child tag
* @throws InvalidFormatException if the format of the items is invalid
* @since TODO
* @since 2.1.0
*/
public static int getInt(CompoundBinaryTag tag, String key) throws InvalidFormatException {
BinaryTag childTag = tag.get(key);
Expand All @@ -72,7 +72,7 @@ public static int getInt(CompoundBinaryTag tag, String key) throws InvalidFormat
*
* @param tag {@link CompoundBinaryTag} to get values for
* @return Mutable map of values
* @since TODO
* @since 2.1.0
*/
public static Map<String, BinaryTag> getCompoundBinaryTagValues(CompoundBinaryTag tag) {
Map<String, BinaryTag> value = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ default String getId() {

/**
* Get a {@link IBatchProcessor} to be used in edit processing. Null if not required.
* @since TODO
* @since 2.1.0
*/
@Nullable
default IBatchProcessor getPlatformProcessor(boolean fastMode) {
Expand All @@ -262,7 +262,7 @@ default IBatchProcessor getPlatformProcessor(boolean fastMode) {
/**
* Get a {@link IBatchProcessor} to be used in edit post-processing. Used for things such as tick-placed and tick fluids.
* Null if not required.
* @since TODO
* @since 2.1.0
*/
@Nullable
default IBatchProcessor getPlatformPostProcessor(boolean fastMode) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public CuboidRegion(World world, BlockVector3 pos1, BlockVector3 pos2) {
* @param pos1 the first position
* @param pos2 the second position
* @param clampY if the min/max Y of the region should be clamped to the world
* @since TODO
* @since 2.1.0
*/
public CuboidRegion(World world, BlockVector3 pos1, BlockVector3 pos2, boolean clampY) {
super(world);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public AnvilChunk18(CompoundTag tag) throws DataException {
* @param tag the tag to read
* @throws DataException on a data error
* @deprecated Use {@link AnvilChunk18#AnvilChunk18(CompoundBinaryTag, Supplier)}
* @since TODO
* @since 2.1.0
*/
@Deprecated
public AnvilChunk18(CompoundTag tag, Supplier<CompoundTag> entitiesTag) throws DataException {
Expand All @@ -99,7 +99,7 @@ public AnvilChunk18(CompoundTag tag, Supplier<CompoundTag> entitiesTag) throws D
*
* @param tag the tag to read
* @throws DataException on a data error
* @since TODO
* @since 2.1.0
*/
public AnvilChunk18(CompoundBinaryTag tag, Supplier<CompoundBinaryTag> entityTag) throws DataException {
//FAWE end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static Chunk getChunk(CompoundTag rootTag) throws DataException {
* location
* @return a Chunk implementation
* @throws DataException if the rootTag is not valid chunk data
* @since TODO
* @since 2.1.0
*/
public static Chunk getChunk(CompoundTag rootTag, Supplier<CompoundTag> entitiesTag) throws DataException {
//FAWE end
Expand Down

0 comments on commit 95512a4

Please sign in to comment.