aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Zajc <marko@zajc.tel>2024-09-08 23:36:01 +0200
committerMarko Zajc <marko@zajc.tel>2024-09-08 23:43:43 +0200
commit522a3a086415de2399d606b663793ca81078b3fb (patch)
treedad3fa4b1c9c5958945a6c05900e111b8296480f
parent9744f6aeadfbaaa0e61ac077b286971d0e738f7e (diff)
Bump version to 1.5HEADmaster
-rw-r--r--README.md4
-rw-r--r--pom.xml5
-rw-r--r--src/main/java/org/eu/zajc/ef/bifunction/ObjBooleanFunction.java6
3 files changed, 8 insertions, 7 deletions
diff --git a/README.md b/README.md
index d665cc5..775a7fa 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ Add the following to your pom.xml's dependencies:
19 <dependency> 19 <dependency>
20 <groupId>org.eu.zajc</groupId> 20 <groupId>org.eu.zajc</groupId>
21 <artifactId>extended-functions</artifactId> 21 <artifactId>extended-functions</artifactId>
22 <version>1.4.2</version> 22 <version>1.5</version>
23 </dependency> 23 </dependency>
24 ... 24 ...
25</dependencies> 25</dependencies>
@@ -36,7 +36,7 @@ repositories {
36 36
37dependencies { 37dependencies {
38 ... 38 ...
39 api 'org.eu.zajc:extended-functions:1.4.2' 39 api 'org.eu.zajc:extended-functions:1.5'
40 ... 40 ...
41} 41}
42``` 42```
diff --git a/pom.xml b/pom.xml
index e35aa7c..1d4110d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,10 +5,11 @@
5 5
6 <groupId>org.eu.zajc</groupId> 6 <groupId>org.eu.zajc</groupId>
7 <artifactId>extended-functions</artifactId> 7 <artifactId>extended-functions</artifactId>
8 <version>1.4.2</version> 8 <version>1.5</version>
9 9
10 <name>Extended Functions</name> 10 <name>Extended Functions</name>
11 <description>Variants and support utilities for functional interfaces that are missing from the standard library</description> 11 <description>Specializations and support utilities for functional interfaces that are missing from the standard
12 library</description>
12 <url>https://git.zajc.tel/extended-functions.git</url> 13 <url>https://git.zajc.tel/extended-functions.git</url>
13 14
14 <inceptionYear>2021</inceptionYear> 15 <inceptionYear>2021</inceptionYear>
diff --git a/src/main/java/org/eu/zajc/ef/bifunction/ObjBooleanFunction.java b/src/main/java/org/eu/zajc/ef/bifunction/ObjBooleanFunction.java
index b00291f..1a303b8 100644
--- a/src/main/java/org/eu/zajc/ef/bifunction/ObjBooleanFunction.java
+++ b/src/main/java/org/eu/zajc/ef/bifunction/ObjBooleanFunction.java
@@ -26,9 +26,9 @@ import org.eu.zajc.ef.function.BooleanFunction;
26import org.eu.zajc.ef.trifunction.ObjObjBooleanFunction; 26import org.eu.zajc.ef.trifunction.ObjObjBooleanFunction;
27 27
28/** 28/**
29 * Represents a function that accepts an object-valued and a {@code boolean}-valued argument, 29 * Represents a function that accepts an object-valued and a {@code boolean}-valued
30 * and produces a result. This is the {@code (reference, boolean)} specialization of 30 * argument, and produces a result. This is the {@code (reference, boolean)}
31 * {@link BiFunction}. 31 * specialization of {@link BiFunction}.
32 * 32 *
33 * <p> 33 * <p>
34 * This is a functional interface whose functional method is 34 * This is a functional interface whose functional method is