1.7.0 Release #10

Merged
Infendro merged 4 commits from develop into main 2026-03-11 21:26:45 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 6df6547ef4 - Show all commits

View File

@@ -21,7 +21,7 @@ repositories {
}
dependencies {
implementation("com.infendro:hash:1.6.0")
implementation("com.infendro:hash:1.7.0")
}
```
@@ -31,6 +31,6 @@ dependencies {
fun main() {
// hash some value using SHA-256
val value = "Hello World!".encodeToByteArray()
val hash = `SHA-256`.hash(value)
val hash = `SHA-256`().hash(value)
}
```

View File

@@ -5,7 +5,7 @@ import com.infendro.plugin.token
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
group = "com.infendro"
version = "1.6.0"
version = "1.7.0"
plugins {
alias(libs.plugins.infendro)