Skip to content

Commit 3ffc1be

Browse files
committed
prepare dev cycle 3.2.0
1 parent f7d8c89 commit 3ffc1be

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
<!-- for main -->
2-
<!--
2+
33
[![Download](https://img.shields.io/badge/Download-3.1.0-%23007ec6)](https://central.sonatype.com/artifact/ch.tutteli.kbox/kbox/3.1.0)
44
[![Apache license](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache2.0)
55
[![Build Status Ubuntu](https://github.com/robstoll/kbox/workflows/Ubuntu/badge.svg?event=push)](https://github.com/robstoll/kbox/actions?query=workflow%3AUbuntu+branch%3Amain)
66
[![Build Status Windows](https://github.com/robstoll/kbox/workflows/Windows/badge.svg?event=push)](https://github.com/robstoll/kbox/actions?query=workflow%3AWindows+branch%3Amain)
7-
-->
87

9-
<!-- for a specific release -->
108

9+
<!-- for a specific release -->
10+
<!--
1111
[![Download](https://img.shields.io/badge/Download-3.1.0-%23007ec6)](https://central.sonatype.com/artifact/ch.tutteli.kbox/kbox/3.1.0)
1212
[![Apache license](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache2.0)
13-
13+
-->
1414

1515
# KBox
1616
KBox is a very small but useful utility library for Kotlin (JVM, Android and JS) providing functions which are missing
1717
in the stdlib such as:
18-
- [failIf](https://github.com/robstoll/kbox/v3.1.0/main/src/commonMain/kotlin/ch/tutteli/kbox/failIf.kt)
19-
- [takeIf](https://github.com/robstoll/kbox/v3.1.0/main/src/commonMain/kotlin/ch/tutteli/kbox/takeIf.kt)
20-
- [blankToNull](https://github.com/robstoll/kbox/v3.1.0/main/src/commonMain/kotlin/ch/tutteli/kbox/blankToNull.kt)
21-
- [isNotNullAndNotEmpty/Blank](https://github.com/robstoll/kbox/v3.1.0/main/src/commonMain/kotlin/ch/tutteli/kbox/isNotNullAndNot.kt)
22-
- [identity](https://github.com/robstoll/kbox/v3.1.0/main/src/commonMain/kotlin/ch/tutteli/kbox/identity.kt)
23-
- [Tuple4(Like) - Tuple9(Like)](https://github.com/robstoll/kbox/v3.1.0/main/src/commonMain/generated/kotlin/ch/tutteli/kbox)
18+
- [failIf](https://github.com/robstoll/kbox/tree/main/src/commonMain/kotlin/ch/tutteli/kbox/failIf.kt)
19+
- [takeIf](https://github.com/robstoll/kbox/tree/main/src/commonMain/kotlin/ch/tutteli/kbox/takeIf.kt)
20+
- [blankToNull](https://github.com/robstoll/kbox/tree/main/src/commonMain/kotlin/ch/tutteli/kbox/blankToNull.kt)
21+
- [isNotNullAndNotEmpty/Blank](https://github.com/robstoll/kbox/tree/main/src/commonMain/kotlin/ch/tutteli/kbox/isNotNullAndNot.kt)
22+
- [identity](https://github.com/robstoll/kbox/tree/main/src/commonMain/kotlin/ch/tutteli/kbox/identity.kt)
23+
- [Tuple4(Like) - Tuple9(Like)](https://github.com/robstoll/kbox/tree/main/src/commonMain/generated/kotlin/ch/tutteli/kbox)
2424
(including functions mapComponentX, append, glue)
25-
- [Triple/Pair.mapFirst/Second/Third](https://github.com/robstoll/kbox/v3.1.0/main/src/commonMain/generated/kotlin/ch/tutteli/kbox/tupleMap.kt#L12)
26-
- [toVararg](https://github.com/robstoll/kbox/tree/v3.1.0/src/commonMain/generated/kotlin/ch/tutteli/kbox/toVararg.kt), [mapVararg](https://github.com/robstoll/kbox/tree/main/src/commonMain/generated/kotlin/ch/tutteli/kbox/mapVararg.kt), [varargToList (glue)]((https://github.com/robstoll/kbox/tree/main/src/commonMain/generated/kotlin/ch/tutteli/kbox/varargToList.kt))
27-
-
25+
- [Triple/Pair.mapFirst/Second/Third](https://github.com/robstoll/kbox/tree/main/src/commonMain/generated/kotlin/ch/tutteli/kbox/tupleMap.kt#L12)
26+
- [toVararg](https://github.com/robstoll/kbox/tree/main/src/commonMain/generated/kotlin/ch/tutteli/kbox/toVararg.kt), [mapVararg](https://github.com/robstoll/kbox/tree/main/src/commonMain/generated/kotlin/ch/tutteli/kbox/mapVararg.kt), [varargToList (glue)]((https://github.com/robstoll/kbox/tree/main/src/commonMain/generated/kotlin/ch/tutteli/kbox/varargToList.kt))
27+
2828
and more, see the [Documentation](https://robstoll.github.io/kbox/kdoc/) for a full list.
2929

3030
# Installation

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import java.nio.file.StandardCopyOption
55
buildscript {
66
// needs to be defined in here because otherwise tutteli-publish plugin does not have this information when applied
77
// and we use/apply it in the conventions
8-
rootProject.version = "3.1.0"
8+
rootProject.version = "3.2.0-SNAPSHOT"
99
rootProject.group = "ch.tutteli.kbox"
1010
rootProject.description = "A utility library for Kotlin"
1111
extra.set("generationFolder", project.files("src/commonMain/generated/kotlin"))

0 commit comments

Comments
 (0)