diff --git a/README.md b/README.md index 91d9c55..8a9ae7a 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,15 @@ -# Kotlin ByteArray Utilities +# bytearray-kt -This library provides various utilities for working with ByteArray in Kotlin Multiplatform. +`bytearray-kt` is a Kotlin Multiplatform library that provides helper functions for working with `ByteArray`. -## Features +## Targets -* Multiplatform support - * JVM - * JavaScript - * Native (Linux) +| Target | Status | +|------------------|---------------| +| JVM | Supported | +| JavaScript | Supported | +| Native (Linux) | Supported | +| Native (Windows) | Not Supported | ## Installation @@ -19,6 +21,6 @@ repositories { } dependencies { - implementation("com.infendro:bytearray:1.1.1") + implementation("com.infendro:bytearray:1.2.4") } ```