Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
id("xyz.jpenilla.run-paper") version "3.0.2"
}

var rootVersion by extra("2.14.4")
var rootVersion by extra("2.15.1")
var snapshot by extra("SNAPSHOT")
var revision: String by extra("")
var buildNumber by extra("")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ default IQueueChunk<T> reset() {
/**
* Invalidate the {@link WrapperChunk} if present.
*
* @since TODO
* @since 2.15.0
*/
void invalidateWrapper();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* supplier given on instantiation.
*
* @param <T> type of wrapped chunk
* @since TODO
* @since 2.15.0
*/
@SuppressWarnings("removal")
@ApiStatus.Internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private SideEffectSet(int sideEffectsBitmap) {
/**
* Create a new {@link SideEffectSet} with the given side effect set to "on"
*
* @since 2.12.3
* @since 2.15.0
*/
public SideEffectSet with(SideEffect sideEffect) {
return with(sideEffect, SideEffect.State.ON);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ junit.jupiter.execution.parallel.mode.classes.default=same_thread
junit.jupiter.execution.parallel.config.strategy=dynamic
junit.jupiter.execution.parallel.config.dynamic.factor=4

jqwik.tries.default = 10000
jqwik.tries.default = 1000
Loading