Compare commits

..

2 Commits

Author SHA1 Message Date
1f30e07d39 bump version to 1.1.1
All checks were successful
/ publish (push) Successful in 2m46s
2025-07-24 20:53:43 +02:00
11c95ed76f fix addAll 2025-07-24 20:52:47 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
group = "com.infendro" group = "com.infendro"
version = "1.1.0" version = "1.1.1"
repositories { repositories {
mavenCentral() mavenCentral()

View File

@@ -3,5 +3,5 @@ package com.infendro.bytearray
fun MutableCollection<Byte>.addAll( fun MutableCollection<Byte>.addAll(
bytes: ByteArray, bytes: ByteArray,
): Boolean { ): Boolean {
return addAll(bytes) return addAll(bytes.toList())
} }